#include #include "jkqtplotter/jkqtplotter.h" #include "jkqtplotter/jkqtpgraphsimpulses.h" // number of datapoints: #define Ndata 40 int main(int argc, char* argv[]) { QApplication app(argc, argv); // 1. create a plotter window and get a pointer to the internal datastore (for convenience) JKQtPlotter plot; JKQTPdatastore* ds=plot.getDatastore(); // 2. now we create data for a simple plot (a sine curve with lin. increasing errors) QVector X, Y; for (int i=0; iaddCopiedColumn(X, "x"); size_t columnY=ds->addCopiedColumn(Y, "y"); // 4. create a vertical impulse graph in the plot, which plots the dataset X/Y: JKQTPimpulsesVerticalGraph* graph=new JKQTPimpulsesVerticalGraph(&plot); graph->set_xColumn(columnX); graph->set_yColumn(columnY); graph->set_lineWidth(2); graph->set_color(QColor("red")); graph->set_title(QObject::tr("$\\cos(x)\\cdot\\exp(-x/10)$")); // 5. add the graph to the plot, so it is actually displayed plot.addGraph(graph); // 6. set some axis properties (we use LaTeX for nice equation rendering) plot.get_xAxis()->set_axisLabel(QObject::tr("x-axis")); plot.get_yAxis()->set_axisLabel(QObject::tr("y-axis")); // 7. switch the grid off plot.get_xAxis()->set_drawGrid(false); plot.get_yAxis()->set_drawGrid(false); // 8. autoscale the plot so the graph is contained plot.zoomToFit(); // show plotter and make it a decent size plot.show(); plot.resize(600,400); return app.exec(); }