2019-06-21 04:24:47 +08:00
|
|
|
/** \example barchart.cpp
|
2019-01-20 23:15:10 +08:00
|
|
|
* Shows how to draw Barcharts with JKQTPlotter
|
2019-01-13 01:53:16 +08:00
|
|
|
*
|
2019-01-20 23:15:10 +08:00
|
|
|
* \ref JKQTPlotterBarcharts
|
2019-01-13 01:53:16 +08:00
|
|
|
*/
|
|
|
|
|
2018-12-29 00:46:47 +08:00
|
|
|
#include <QApplication>
|
|
|
|
#include "jkqtplotter/jkqtplotter.h"
|
2019-06-20 22:06:31 +08:00
|
|
|
#include "jkqtplotter/graphs/jkqtpscatter.h"
|
|
|
|
#include "jkqtplotter/graphs/jkqtpbarchart.h"
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
#define Ndata 5
|
|
|
|
|
2020-09-17 22:59:57 +08:00
|
|
|
|
|
|
|
template <class TCHART>
|
|
|
|
void doExample()
|
|
|
|
{
|
2018-12-29 00:46:47 +08:00
|
|
|
// 1. create a plotter window and get a pointer to the internal datastore (for convenience)
|
2020-09-17 22:59:57 +08:00
|
|
|
JKQTPlotter* plot=new JKQTPlotter();
|
|
|
|
plot->getPlotter()->setUseAntiAliasingForGraphs(true); // nicer (but slower) plotting
|
|
|
|
plot->getPlotter()->setUseAntiAliasingForSystem(true); // nicer (but slower) plotting
|
|
|
|
plot->getPlotter()->setUseAntiAliasingForText(true); // nicer (but slower) text rendering
|
|
|
|
JKQTPDatastore* ds=plot->getDatastore();
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
// 2. now we create data for three simple barchart
|
|
|
|
QString L[Ndata]={ "cat. A", "cat. C", "cat. B", "cat. D", "other"}; // unsorted category axis
|
|
|
|
double X[Ndata]={ 1, 3, 2, 4, 5};
|
|
|
|
//QString L[Ndata]={ "cat. A", "cat. B", "cat. C", "cat. D", "other"}; // correctly sorted data!
|
|
|
|
//double X[Ndata]={ 1, 2, 3, 4, 5};
|
|
|
|
double Y1[Ndata]={ 5, 4, 3, 4, 5};
|
|
|
|
double Y2[Ndata]={ -5, -3, 1, 3, 6};
|
|
|
|
double Y3[Ndata]={ 6, 2, 5, 3, 6};
|
|
|
|
|
2019-01-20 23:15:10 +08:00
|
|
|
// 3. make data available to JKQTPlotter by adding it to the internal datastore.
|
2018-12-29 00:46:47 +08:00
|
|
|
// Note: In this step the data is copied (of not specified otherwise)
|
|
|
|
// 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, Ndata, "x");
|
|
|
|
size_t columnY1=ds->addCopiedColumn(Y1, Ndata, "y1");
|
|
|
|
size_t columnY2=ds->addCopiedColumn(Y2, Ndata, "y2");
|
|
|
|
size_t columnY3=ds->addCopiedColumn(Y3, Ndata, "y3");
|
|
|
|
|
|
|
|
// 4. create graphs in the plot, which plots the dataset X/Y1, X/Y2 and X/Y3:
|
2020-09-17 22:59:57 +08:00
|
|
|
TCHART* graph1=new TCHART(plot);
|
|
|
|
graph1->setBarPositionColumn(columnX);
|
|
|
|
graph1->setBarHeightColumn(columnY1);
|
2019-01-26 20:00:40 +08:00
|
|
|
graph1->setTitle(QObject::tr("dataset 1"));
|
2020-09-17 22:59:57 +08:00
|
|
|
TCHART* graph2=new TCHART(plot);
|
|
|
|
graph2->setBarPositionColumn(columnX);
|
|
|
|
graph2->setBarHeightColumn(columnY2);
|
2019-01-26 20:00:40 +08:00
|
|
|
graph2->setTitle(QObject::tr("dataset 2"));
|
2020-09-17 22:59:57 +08:00
|
|
|
TCHART* graph3=new TCHART(plot);
|
|
|
|
graph3->setBarPositionColumn(columnX);
|
|
|
|
graph3->setBarHeightColumn(columnY3);
|
2019-01-26 20:00:40 +08:00
|
|
|
graph3->setTitle(QObject::tr("dataset 3"));
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
// 5. add the graphs to the plot, so it is actually displayed
|
2020-09-17 22:59:57 +08:00
|
|
|
plot->addGraph(graph1);
|
|
|
|
plot->addGraph(graph2);
|
|
|
|
plot->addGraph(graph3);
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
// 6. now we set the graphs, so they are plotted side-by-side
|
2019-01-20 17:49:29 +08:00
|
|
|
// This function searches all JKQTPBarHorizontalGraph in the current
|
2018-12-29 00:46:47 +08:00
|
|
|
// plot and sets their shift/scale so they form a nice plot with
|
|
|
|
// side-by-side groups
|
|
|
|
graph1->autoscaleBarWidthAndShift(0.75, 1);
|
|
|
|
|
2020-09-17 22:59:57 +08:00
|
|
|
if (dynamic_cast<JKQTPBarVerticalGraph*>(graph1)!=nullptr) {
|
|
|
|
// 7. data is grouped into 5 numbere groups (1..5), but we also have string
|
|
|
|
// labels for these groups (stored in L). In order to display these labels,
|
|
|
|
// we have to tell the x-Axis to use these special labels:
|
|
|
|
plot->getXAxis()->addAxisTickLabels(X, L, Ndata);
|
|
|
|
// also we can rotate the labels a bit (by 45 degree), so they fit better
|
|
|
|
plot->getXAxis()->setTickLabelAngle(45);
|
|
|
|
plot->getXAxis()->setTickLabelFontSize(12);
|
|
|
|
} else {
|
|
|
|
// 7. data is grouped into 5 numbere groups (1..5), but we also have string
|
|
|
|
// labels for these groups (stored in L). In order to display these labels,
|
|
|
|
// we have to tell the x-Axis to use these special labels:
|
|
|
|
plot->getYAxis()->addAxisTickLabels(X, L, Ndata);
|
|
|
|
plot->getYAxis()->setTickLabelFontSize(12);
|
|
|
|
}
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
// 8. finally we move the plot key/legend to the outside, top-right
|
|
|
|
// and lay it out as a single row
|
|
|
|
// NOTE: plot is a descendent of QWidget, which uses an internal object of
|
|
|
|
// type JKQTBasePlotter, which does the actual plotting.
|
|
|
|
// So many properties of the plot are only available in this internal
|
2020-09-17 22:59:57 +08:00
|
|
|
// object, which you can access by plot->getPlotter().
|
|
|
|
plot->getPlotter()->setKeyPosition(JKQTPKeyOutsideTopRight);
|
|
|
|
plot->getPlotter()->setKeyLayout(JKQTPKeyLayoutOneRow);
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
// 9 autoscale the plot so the graph is contained
|
2020-09-17 22:59:57 +08:00
|
|
|
plot->zoomToFit();
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
// show plotter and make it a decent size
|
2020-09-17 22:59:57 +08:00
|
|
|
plot->show();
|
|
|
|
plot->resize(600,400);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2022-04-16 05:01:09 +08:00
|
|
|
|
|
|
|
#if QT_VERSION >= 0x050600
|
|
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); // DPI support
|
|
|
|
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); //HiDPI pixmaps
|
|
|
|
#endif
|
2020-09-17 22:59:57 +08:00
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
2022-04-16 05:01:09 +08:00
|
|
|
|
2020-09-17 22:59:57 +08:00
|
|
|
doExample<JKQTPBarVerticalGraph>();
|
|
|
|
doExample<JKQTPBarHorizontalGraph>();
|
2018-12-29 00:46:47 +08:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|