VTK/Examples/Cxx/Plotting/LinePlot
From KitwarePublic
This example demonstrates how to plot XY data.
LineChart.cxx
#include <vtkVersion.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderWindow.h> #include <vtkSmartPointer.h> #include <vtkChartXY.h> #include <vtkTable.h> #include <vtkPlot.h> #include <vtkFloatArray.h> #include <vtkContextView.h> #include <vtkContextScene.h> #include <vtkPen.h> int main(int, char *[]) { // Create a table with some points in it vtkSmartPointer<vtkTable> table = vtkSmartPointer<vtkTable>::New(); vtkSmartPointer<vtkFloatArray> arrX = vtkSmartPointer<vtkFloatArray>::New(); arrX->SetName("X Axis"); table->AddColumn(arrX); vtkSmartPointer<vtkFloatArray> arrC = vtkSmartPointer<vtkFloatArray>::New(); arrC->SetName("Cosine"); table->AddColumn(arrC); vtkSmartPointer<vtkFloatArray> arrS = vtkSmartPointer<vtkFloatArray>::New(); arrS->SetName("Sine"); table->AddColumn(arrS); // Fill in the table with some example values int numPoints = 69; 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)); } // Set up the view vtkSmartPointer<vtkContextView> view = vtkSmartPointer<vtkContextView>::New(); view->GetRenderer()->SetBackground(1.0, 1.0, 1.0); // Add multiple line plots, setting the colors etc vtkSmartPointer<vtkChartXY> chart = vtkSmartPointer<vtkChartXY>::New(); view->GetScene()->AddItem(chart); vtkPlot *line = chart->AddPlot(vtkChart::LINE); #if VTK_MAJOR_VERSION <= 5 line->SetInput(table, 0, 1); #else line->SetInputData(table, 0, 1); #endif line->SetColor(0, 255, 0, 255); line->SetWidth(1.0); line = chart->AddPlot(vtkChart::LINE); #if VTK_MAJOR_VERSION <= 5 line->SetInput(table, 0, 2); #else line->SetInputData(table, 0, 2); #endif line->SetColor(255, 0, 0, 255); line->SetWidth(5.0); line->GetPen()->SetLineType(2);//For dotted line, can be from 2 to 5 for different dot patterns //view->GetRenderWindow()->SetMultiSamples(0); // Start interactor view->GetInteractor()->Initialize(); view->GetInteractor()->Start(); return EXIT_SUCCESS; }
CMakeLists.txt
cmake_minimum_required(VERSION 2.6) PROJECT(LineChart) FIND_PACKAGE(VTK REQUIRED) INCLUDE(${VTK_USE_FILE}) ADD_EXECUTABLE(LineChart LineChart.cxx) TARGET_LINK_LIBRARIES(LineChart vtkHybrid vtkCharts)
