<div dir="ltr"><div><div><div><div>Dear VTK users,<br><br></div>I would like to have three different "draw areas": one for parallel coordinates, one for a vtkXYPlotActor and a third one for normal 3D stuff. So far, I managed to combine the 3D stuff with the vtkXYPlotActor. However, I do not know how to add the parallel coordinates. I tried to use vtkParallelCoordinatesActor but it keeps telling me "vtkParallelCoordinatesActor (0xdc79f0): No field data to plot" and "vtkParallelCoordinatesActor (0xdc79f0): Nothing to plot!" even though I feed it with the following:<br><br>  vtkTable* vtk_table = vtkTable::New();<br>  <br>  for (int d = 0; d < dimension; ++d)<br>  {<br>    vtkDoubleArray* coordinates = vtkDoubleArray::New();<br>    for (size_t i = 0; i < num_points; ++i)<br>      coordinates->InsertNextValue(static_cast<double>(d*i));<br>    vtk_table->AddColumn(coordinates);<br>    coordinates->Delete();<br>  }<br>  <br>  m_actor->SetInputData(vtk_table);<br>  vtk_table->Delete();<br><br></div>Does someone have an idea how to make it work or use some other class?<br><br></div>Best<br></div>CP<br><br><div><div><div><br></div></div></div></div>