an extensive Qt5 & Qt6 Plotter framework (including a feature-richt plotter widget, a speed-optimized, but limited variant and a LaTeX equation renderer!), written fully in C/C++ and without external dependencies
Go to file
2018-12-02 18:30:12 +01:00
doc added y-range-plot JKQTPfilledVerticalRangeGraph and example for it + date/time axes 2018-12-01 16:02:04 +01:00
lib some bug-fixes (ressources from library were not loaded, compile order in projects was wrong) 2018-12-02 18:30:12 +01:00
screenshots added example project for error indicator styles 2018-12-02 11:38:27 +01:00
test some bug-fixes (ressources from library were not loaded, compile order in projects was wrong) 2018-12-02 18:30:12 +01:00
.gitignore some more fixes for reorganization 2018-11-25 20:36:26 +01:00
JKQtFastPlotterBuildAllExamples.pro some reorganizations + QMake-build-projects with library 2018-12-02 14:08:43 +01:00
JKQtPlotterBuildAllExamples.pro some reorganizations + QMake-build-projects with library 2018-12-02 14:08:43 +01:00
LICENSE Initial commit 2015-07-11 12:55:50 +02:00
README.md some reorganizations + QMake-build-projects with library 2018-12-02 14:08:43 +01:00

JKQtPlotter

This is an extensive library of function/data plotter classes for Qt (>= 4.7, tested with Qt up to 5.11).

This software is licensed under the term of the GNU Lesser General Public License 2.1 (LGPL 2.1) or above.

Screenshots

Screenshots directory

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.

Different Plot Data Styles

Screenshot Description Notes
Very Basic Example (Line Graph) JKQTPxyLineGraph
C-style arrays of data
Line Graph with Different Symbols and Line Styles JKQTPxyLineGraph
C++ vector of data
setting line styles and symbol styles
automatic graph coloring
Simple Line/Symbol Graph With Errorbars JKQTPxyLineErrorGraph
C-style arrays of data
Different Types of Errorindicators JKQTPxyLineErrorGraph
different styles of error indicators for x- and y-errors
C++-style QVector for data
styling error indicators
moving key and formatting plotter grid
Simple Bar Charts JKQTPbarVerticalGraph
C-style arrays of data

Stacked Bar Charts JKQTPbarVerticalStackableGraph, JKQTPbarHorizontalStackableGraph
C++-style vectors of data

Styling the Plot, Keys, Axes, ...

Screenshot Description Notes
logarithmic axes JKQTPxyLineGraph and JKQTPgeoText
C++ vector of data
logarithmic axes
plot line styles
internal LaTeX parser
add commenting text to a graph


date/time axes JKQTPxyLineGraph and JKQTPfilledVerticalRangeGraph
C++ vector of data
date/time axes
plot min/max range graph
internal LaTeX parser
data from CSV files

Image data Plots

Screenshot Description Notes
Basic 1-channel Raw C Image Plot JKQTPColumnMathImage
image data copied from C-style row-major array into a single column of the internal datastore
Describes several options of the image plotting classes (different ways of color coding, what to do with data above/below the limits etc.)
Modifier-Feature of Image Plots JKQTPColumnMathImage
image data copied from C-style row-major array into a single column of the internal datastore
Image is modified by a second image to display two data dimensions at the same time
Basic 1-channel Raw C Image Plot
without the internal datastore
JKQTPMathImage
image data in a C-style row-major array, not using internal datastore
1-channel OpenCV cv::Mat Image Plot JKQTPColumnMathImage
image data copied from OpenCV cv::Mat-structure into a single column of the internal datastore
RGB OpenCV cv::Mat Image Plot JKQTPColumnRGBMathImage
image data copied from OpenCV cv::Mat-structure into three columns of the internal datastore

Tools and Special Features

Screenshot Description Notes
JKQTMathText: LaTeX Renderer