// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #include "vtkChartXY.h" #include "vtkContextScene.h" #include "vtkContextView.h" #include "vtkFloatArray.h" #include "vtkNew.h" #include "vtkPlotPoints.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkRenderer.h" #include "vtkStringArray.h" #include "vtkTable.h" #include //------------------------------------------------------------------------------ int TestScatterPlot(int, char*[]) { // Set up a 2D scene, add an XY chart to it vtkNew view; view->GetRenderer()->SetBackground(1.0, 1.0, 1.0); view->GetRenderWindow()->SetSize(400, 300); vtkNew chart; view->GetScene()->AddItem(chart); chart->SetShowLegend(true); // Create a table with some points in it... vtkNew table; vtkNew arrX; arrX->SetName("X Axis"); table->AddColumn(arrX); vtkNew arrC; arrC->SetName("Cosine"); table->AddColumn(arrC); vtkNew arrS; arrS->SetName("Sine"); table->AddColumn(arrS); vtkNew arrT; arrT->SetName("Tan"); table->AddColumn(arrT); vtkNew labels; labels->SetName("Labels"); table->AddColumn(labels); // Test charting with a few more points... int numPoints = 40; float inc = 7.5 / (numPoints - 1); table->SetNumberOfRows(numPoints); for (int i = 0; i < numPoints; ++i) { table->SetValue(i, 0, i * inc); table->SetValue(i, 1, cos(i * inc) + 0.0); table->SetValue(i, 2, sin(i * inc) + 0.0); table->SetValue(i, 3, tan(i * inc) + 0.5); if (i % 2) { table->SetValue(i, 4, vtkStdString("Odd")); } else { table->SetValue(i, 4, vtkStdString("Even")); } } // Add multiple line plots, setting the colors etc vtkPlot* points = chart->AddPlot(vtkChart::POINTS); points->SetInputData(table, 0, 1); points->SetColor(0, 0, 0, 255); points->SetWidth(1.0); points->SetIndexedLabels(labels); points->SetTooltipLabelFormat("{i} from {l} ({x}, {y})"); vtkPlotPoints::SafeDownCast(points)->SetMarkerStyle(vtkPlotPoints::CROSS); points = chart->AddPlot(vtkChart::POINTS); points->SetInputData(table, 0, 2); points->SetColor(0, 0, 0, 255); points->SetWidth(1.0); vtkPlotPoints::SafeDownCast(points)->SetMarkerStyle(vtkPlotPoints::PLUS); points = chart->AddPlot(vtkChart::POINTS); points->SetInputData(table, 0, 3); points->SetColor(0, 0, 255, 255); points->SetWidth(4.0); points->SetIndexedLabels(labels); // Finally render the scene and compare the image to a reference image view->GetRenderWindow()->SetMultiSamples(0); view->GetInteractor()->Initialize(); view->GetInteractor()->Start(); return EXIT_SUCCESS; }