
qt - What are the advantages/disadvantages of QCustomPlot, …
Oct 25, 2012 · That being said, my impressions are: QCustomPlot seems to be more actively developed at present. Last release was in August 2012 (whereas last release of Qwt dates back to 2011). …
c++ - How to use QCustomPlot in plot real time - Stack Overflow
Apr 27, 2015 · QCustomPlot has setData function that accepts const variable. Is there a way to QCustomPlot can be use to plot dynamically? QCustomPlot setData function accepts constant …
c++ - Making plot in Qt - Stack Overflow
Sep 29, 2009 · I love QCustomPlot which is a Qt C++ library. It focuses on making good looking, publication quality 2D plots, graphs and charts and also has high performance for real-time …
QCustomPlot add scatter points on top of existing plot
Mar 25, 2018 · After creating a plot using qcustomplot, how can I, based on existing X values, retrieve the Y values, and then plot points at these locations? My attempt is below: Create plot: This function …
How to plot large time series with QCustomPlot efficiently?
Because QCustomPlot uses internally a QCPDataMap (which is a typedef of QMap<double, QCPData>) this means that it is using a map to store the actual data sorted by x coordinates (keys). …
Newest 'qcustomplot' Questions - Stack Overflow
Aug 29, 2023 · A qDockWidget containing a qCustomPlot always starts with zero height. I am able to catch the qDockWidget resize event and change the qCustomPlot geometry using these answers, …
How to reduce the build time associated with using a c++ library ...
Dec 11, 2022 · Here's what I find to be useful. Build qcustomplot as a shared library in release mode. Link to the shared library instead of using qcustomplot.cpp in other projects. Use a wrapper class …
color the area between two curves in QCustomPlot
Sep 21, 2023 · As posted on the QCustomPlot website the goal is to color the part between the curve and another one and not the x axis. I've done a work around but it's not the best solution and I'm …
c++ - QCustomPlot in MSVS2012 - Stack Overflow
Apr 8, 2015 · I succeeded in building a program in visual studio 2012 that runs QT without the plugin. I included the QT include folder and manually added the libraries to the resources. And it compiled …
c++ - QCustomPlot replot QCPLayer - Stack Overflow
Mar 25, 2018 · The qcustomplot documentation states this: If you often need to call a full QCustomPlot::replot only because a non-complex object (e.g. an item) has changed while having …