JKQtPlotter/examples/test_multiplot
jkriege2 69ad2a0182 - added styling system for JKQTPlotter (+example app)
- improved documentation
- changed: using static const variables instead of \c #define for fixed default values (e.g. JKQTPImageTools::LUTSIZE, JKQTPImageTools::PALETTE_ICON_WIDTH, JKQTPlotterDrawinTools::ABS_MIN_LINEWIDTH, JKQTMathText::ABS_MIN_LINEWIDTH ...)
- new: added debugging option, which surrounds different regions with visible rectangles (JKQTBasePlotter::enableDebugShowRegionBoxes() )
- fixed: colorbars at top were positioned over the plot label
- new: frames (plot viewport, key/legend ...) may be rounded off at the corners
- new: diverse new styling options (default font name/size ...)
- speed improvements to JKQTMathText::useSTIX()
2019-02-09 12:43:12 +01:00
..
plotsymbol.png - fixed zoomin/synchronized graphs, which was broken by former update to user-interaction 2019-02-03 14:08:16 +01:00
README.md - added styling system for JKQTPlotter (+example app) 2019-02-09 12:43:12 +01:00
test_multiplot_and_lib.pro added example for geometric objects 2019-01-07 21:00:56 +01:00
test_multiplot_ui.cpp - fixed zoomin/synchronized graphs, which was broken by former update to user-interaction 2019-02-03 14:08:16 +01:00
test_multiplot_ui.h - fixed zoomin/synchronized graphs, which was broken by former update to user-interaction 2019-02-03 14:08:16 +01:00
test_multiplot_ui.ui - fixed zoomin/synchronized graphs, which was broken by former update to user-interaction 2019-02-03 14:08:16 +01:00
test_multiplot.cpp - added styling system for JKQTPlotter (+example app) 2019-02-09 12:43:12 +01:00
test_multiplot.pro - added styling system for JKQTPlotter (+example app) 2019-02-09 12:43:12 +01:00
test_multiplot.qrc - fixed zoomin/synchronized graphs, which was broken by former update to user-interaction 2019-02-03 14:08:16 +01:00

Example (JKQTPlotter): Laying out Several Plots

This project (see ./examples/test_multiplot/) shows how several JKQTPlotter widgets can be combined to in a layout (based on the Qt layouting system). It also shows how axes in such a layout can be linked to improve user experience.

The source code of the main application can be found in test_multiplot.cpp.

First three plots are generated and put into a QGridLayout:

    // 1. create a widget
    QWidget mainWidget;
    mainWidget.setWindowTitle("JKQTPlotter(s) in a QGridLayout");

    // 2. Create a QGridLayout for the plots and add it to the widget.
    QGridLayout* layout=new QGridLayout();
    mainWidget.setLayout(layout);

    // 3.1 create a main plotter widget and add it to the layout
    JKQTPlotter* plotMain=new JKQTPlotter(&mainWidget);
    layout->addWidget(plotMain, 0,0);
    JKQTPDatastore* ds=plotMain->getDatastore();

    // 3.2 create a second and third plotter widget and add them to the
    //     layout below and at the bottom right of the plotMain.
    //     Also configure it to use the same datastore as plotMain
    JKQTPlotter* plotResid=new JKQTPlotter(false, &mainWidget, ds);
    layout->addWidget(plotResid, 1,0);
    JKQTPlotter* plotResidHist=new JKQTPlotter(false, &mainWidget, ds);
    layout->addWidget(plotResidHist, 1,1);
	
    // 3.3 set relative sizes of the plots via the layout (small plots have 1/3 the width and height of the large plot
    layout->setRowStretch(0,3);
    layout->setRowStretch(1,1);
    layout->setColumnStretch(0,3);
    layout->setColumnStretch(1,1);

With this simple setup, all three plots would be arranged by the QLayout, but they were all independent. This example could be part of a data fitting application, where the main plot shows data and a fit curve. A plot below that will display the residulas (errors) of the fit. Now if a user zooms one of the plots, he would expect that athe x-axes of the two plots are synchronized. The same for a third plot on the rhs of the residuals, which will show a residual histogram. This linking of the axes can be achieved by the following code:

    // 3.3 synchronize width/x-axis of plotResid to width/x-axis of plotMain
    plotResid->synchronizeToMaster(plotMain, JKQTBasePlotter::sdXAxis, true, true, true);

    // 3.4 synchronize y-axis of width/plotResidHist to y-axis of width/plotResid
    plotResidHist->synchronizeToMaster(plotResid, JKQTBasePlotter::sdYAxis, true, true, true);

Finally: When printing or saving an image of the plots, the plotter will no know anything about the arrangement of the plots and the plots cannot be printed/drawn in the same arrangement as in the window. If you want to arrange the plots in the same layout in a printout, as in the window, you will have to tell the main plot, in which arrangement to print the plots:

    // 3.6 ensure that the plot are printed/exported in whole, when printing in plotMain
    plotMain->getPlotter()->setGridPrinting(true);
    plotMain->getPlotter()->addGridPrintingPlotter(0,1,plotResid->getPlotter());
    plotMain->getPlotter()->addGridPrintingPlotter(1,1,plotResidHist->getPlotter());

In the first line, grid-printing (i.e. the layouted printing of several graphs) is activated. Then the arrangement of the two slave plots plotResid and plotResidHist is defined as (x,y)-shifts with respect to the master plot plotMain.

Now some data is generated and several curves are added to the graphs. See test_multiplot.cpp for the full source code.

Finally the axes and plots need a bit of formatting to make them look nicer:

    // 6.1 axis labels, distributed over the several plots
    plotMain->getYAxis()->setAxisLabel("y axis");
    plotResid->getXAxis()->setAxisLabel("x axis");
    plotResid->getYAxis()->setAxisLabel("residuals");
    plotResidHist->getXAxis()->setAxisLabel("frequency");
    // 6.2 switch off the tick labels on the axes that directly face another plot
    plotMain->getXAxis()->setDrawMode1(JKQTPCADMLineTicks);
    plotResidHist->getYAxis()->setDrawMode1(JKQTPCADMLineTicks);
    // 6.3 show tick labels on the rhs y-axis of the residual histogram plot
    plotResidHist->getYAxis()->setDrawMode2(JKQTPCADMLineTicksTickLabels);
    // 6.4 hide keys in all plots but the main plot
    plotResid->getPlotter()->setShowKey(false);
    plotResidHist->getPlotter()->setShowKey(false);
    // 6.5 hide position label and toolbars in the plots except main plot
    plotResid->setToolbarEnabled(false);
    plotResid->setMousePositionShown(false);
    plotResidHist->setToolbarEnabled(false);
    plotResidHist->setMousePositionShown(false);
    plotMain->setToolbarEnabled(true);

As a last step, the axes are scaled automatically, so the data fills the plots:

    // 7. scale plots automatically to data
    plotResid->zoomToFit();
    plotResidHist->zoomToFit();
    plotMain->zoomToFit();

The result looks like this:

test_multiplot

You push the print button (test_multiplot) to open a print preview dialog, which will give an impression of how the three plots will be arranged in a printout:

test_multiplot

In addition this example also contains a Window that allows to control the plot layout and synchronization options:

test_multiplot