2019-01-20 17:49:29 +08:00
# Example (JKQTPLotter): Very simple line-graph {#JKQTPLotterSimpleTest}
This project (see `./examples/simpletest/` ) simply creates a JKQTPLotter widget (as a new window) and adds a single line-graph (a sine-wave). Data is initialized from two QVector< double > objects.
2019-01-12 20:43:12 +08:00
The QMake project looks like this (see [`jkqtplotter_simpletest.pro` ](../simpletest/jkqtplotter_simpletest.pro ):
2019-01-19 16:40:52 +08:00
```.qmake
2018-12-29 00:46:47 +08:00
# source code for this simple demo
SOURCES = jkqtplotter_simpletest.cpp
# configure Qt
CONFIG += qt
QT += core gui xml svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
# output executable name
TARGET = jkqtplotter_simpletest
2019-01-20 17:49:29 +08:00
# include JKQTPLotter source headers and link against library
2018-12-29 00:46:47 +08:00
DEPENDPATH += . ../../lib
INCLUDEPATH += ../../lib
2019-01-09 03:02:05 +08:00
CONFIG (debug, debug|release) {
LIBS += -L../../staticlib/debug -ljkqtplotterlib_debug
} else {
LIBS += -L../../staticlib/release -ljkqtplotterlib
}
2018-12-29 00:46:47 +08:00
```
2019-01-20 17:49:29 +08:00
Alternatively to linking agains a `libjkqtplotter` , you can also directy add the JKQTPLotter sources to the project:
2019-01-19 16:40:52 +08:00
```.qmake
2018-12-29 00:46:47 +08:00
# source code for this simple demo
SOURCES = jkqtplotter_simpletest.cpp
# configure Qt
CONFIG += qt
QT += core gui svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
# output executable name
TARGET = jkqtplotter_simpletest
2019-01-20 17:49:29 +08:00
# include JKQTPLotter source code
2018-12-29 00:46:47 +08:00
include(../../lib/jkqtplotter.pri)
```
2019-01-12 20:43:12 +08:00
The soruce code of the main application is (see [`jkqtplotter_simpletest.cpp` ](../simpletest/jkqtplotter_simpletest.cpp ):
2019-01-19 16:40:52 +08:00
```.cpp
2018-12-29 00:46:47 +08:00
#include <QApplication>
#include "jkqtplotter/jkqtplotter.h"
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)
2019-01-20 17:49:29 +08:00
JKQTPLotter plot;
JKQTPDatastore* ds=plot.getDatastore();
2018-12-29 00:46:47 +08:00
// 2. now we create data for a simple plot (a sine curve)
QVector< double > X, Y;
const int Ndata=100;
for (int i=0; i< Ndata ; i + + ) {
const double x=double(i)/double(Ndata)*8.0*M_PI;
X< < x ;
Y< < sin ( x ) ;
}
2019-01-20 17:49:29 +08:00
// 3. make data available to JKQTPLotter by adding it to the internal
2018-12-29 00:46:47 +08:00
// datastore.
// Note: In this step the data is copied (of not specified otherwise), so
// you can reuse X and Y afterwards!
// The variables columnX and columnY will contain the internal column ID
// of the newlycreated columns with names "x" and "y" and the (copied)
// data from X and Y.
size_t columnX=ds->addCopiedColumn(X, "x");
size_t columnY=ds->addCopiedColumn(Y, "y");
// 4. create a graph in the plot, which plots the dataset X/Y:
2019-01-20 17:49:29 +08:00
JKQTPXYLineGraph* graph1=new JKQTPXYLineGraph(&plot);
2018-12-29 00:46:47 +08:00
graph1->set_xColumn(columnX);
graph1->set_yColumn(columnY);
graph1->set_title(QObject::tr("sine graph"));
// 5. add the graph to the plot, so it is actually displayed
plot.addGraph(graph1);
// 6. 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();
}
```
The result looks like this:
2019-01-12 20:43:12 +08:00
![jkqtplotter_simpletest1 ](../../screenshots/jkqtplotter_simpletest1.png )
2018-12-29 00:46:47 +08:00