c4a217a500
* added simple example (also to documentation!) |
||
---|---|---|
doc | ||
images | ||
screenshots | ||
test | ||
.gitignore | ||
jkqtfastplotter.cpp | ||
jkqtfastplotter.h | ||
jkqtmathtext.cpp | ||
jkqtmathtext.h | ||
jkqtmathtext.readme | ||
jkqtp_imexport.h | ||
jkqtpbaseelements.cpp | ||
jkqtpbaseelements.h | ||
jkqtpbaseplotter.cpp | ||
jkqtpbaseplotter.h | ||
jkqtpbaseplotter.qrc | ||
jkqtpdatastorage.cpp | ||
jkqtpdatastorage.h | ||
jkqtpelements.cpp | ||
jkqtpelements.h | ||
jkqtpgeoelements.cpp | ||
jkqtpgeoelements.h | ||
jkqtphighrestimer.cpp | ||
jkqtphighrestimer.h | ||
jkqtpimageelements.cpp | ||
jkqtpimageelements.h | ||
jkqtpimagetools.cpp | ||
jkqtpimagetools.h | ||
jkqtplotter.cpp | ||
jkqtplotter.dox | ||
jkqtplotter.Doxyfile | ||
jkqtplotter.h | ||
jkqtplotter.pri | ||
jkqtplotter.readme | ||
jkqtpmathparser.cpp | ||
jkqtpmathparser.h | ||
jkqtpoverlayelements.cpp | ||
jkqtpoverlayelements.h | ||
jkqtpparsedfunctionelements.cpp | ||
jkqtpparsedfunctionelements.h | ||
jkqtptools.cpp | ||
jkqtptools.h | ||
jkqttools.cpp | ||
jkqttools.h | ||
LICENSE | ||
README.md |
JKQtPlotter
This is an extensive library of function/data plotter classes for Qt (>= 4.7, tested with Qt up to 5.4).
This software is licensed under the term of the GNU Lesser General Public License 2.1 (LGPL 2.1) or above.
Examples
This section assembles some simple examples of usage. You can find more (complex) examples for the classes in this repository in the subfolder "test". All test-projects are Qt-projects that use qmake to build. You can load them into QtCreator easily.
###Very simple line-graph
This project (see ./test/jkqtplotter_simpletest/
) simply creates a JKQtPlotter widget (as a new window) and adds a single line-graph (a sine-wave).
The QMake project looks like this:
# 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
# include JKQtPlotter source code
include(../../jkqtplotter.pri)
And the soruce code of the main application is:
#include <QApplication>
#include "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)
JKQtPlotter plot;
JKQTPdatastore* ds=plot.getDatastore();
// 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);
}
// 3. make data available to JKQtPlotter by adding it to the internal 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 newly
// created 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:
JKQTPxyLineGraph* graph1=new JKQTPxyLineGraph(&plot);
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();
}
##Screenshots ###Scatter Plots and Boxplots
###Different Types of Barcharts
###Image Plots You can plot C-arrays as images in different color-coding styles. Diferent Overlays/masks are also available. Finally you can use LaTeX markup to format any axis/plot/tick/... label. there is an internal LaTeX parser in this package.
###Plotting a user-defined (parsed) function Yes, a complete math expression parser is contained!
###Axis-Label styles in LogLog-Plot
###Parametrized Scatter Plots and Data Viewer Scatter Plots can have symbols where the shape/color/size is parametrized by a data column. Also the plotter is built around an internal datastore, which you can access (readonly!!!) by a data-viewer that is accessible from the contextmenu in any plot.
#JKQTmathText JKQTmathText is a hand-written LaTeX-renderer for Qt (implemented in native C++, using Qt). It supports a large set of standard LaTeX markup and can render it to a QPainter.