// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #include "vtkChartMatrix.h" #include "vtkChartXY.h" #include "vtkContextScene.h" #include "vtkContextView.h" #include "vtkFloatArray.h" #include "vtkNew.h" #include "vtkPlot.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkTable.h" //------------------------------------------------------------------------------ int TestChartMatrix(int, char*[]) { // Set up a 2D scene, add an XY chart to it vtkNew view; view->GetRenderWindow()->SetSize(400, 300); vtkNew matrix; view->GetScene()->AddItem(matrix); matrix->SetSize(vtkVector2i(2, 2)); matrix->SetGutter(vtkVector2f(30.0, 30.0)); vtkChart* chart = matrix->GetChart(vtkVector2i(0, 0)); // 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 arrS2; arrS2->SetName("Sine2"); table->AddColumn(arrS2); vtkNew tangent; tangent->SetName("Tangent"); table->AddColumn(tangent); // Test charting with a few more points... int numPoints = 42; 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)); table->SetValue(i, 2, sin(i * inc)); table->SetValue(i, 3, sin(i * inc) + 0.5); table->SetValue(i, 4, tan(i * inc)); } // Add multiple line plots, setting the colors etc vtkPlot* line = chart->AddPlot(vtkChart::POINTS); line->SetInputData(table, 0, 1); line->SetColor(0, 255, 0, 255); chart = matrix->GetChart(vtkVector2i(0, 1)); line = chart->AddPlot(vtkChart::POINTS); line->SetInputData(table, 0, 2); line->SetColor(255, 0, 0, 255); chart = matrix->GetChart(vtkVector2i(1, 0)); line = chart->AddPlot(vtkChart::LINE); line->SetInputData(table, 0, 3); line->SetColor(0, 0, 255, 255); chart = matrix->GetChart(vtkVector2i(1, 1)); line = chart->AddPlot(vtkChart::BAR); line->SetInputData(table, 0, 4); // 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; }