Questions tagged [qcustomplot]

QCustomPlot is a Qt C++ widget for 2D plotting and data visualization, licensed under the GPL.

QCustomPlot is a Qt C++ widget for 2D plotting and data visualization, licensed under the GPL. It focuses on making good looking, publication quality 2D plots, graphs and charts and also has high performance for realtime visualization applications.

QCustomPlot can export to various formats such as vectorized PDF files and rasterized images like PNG, JPG and BMP. All outputs look identical and the generated PDF files can be imported and edited by vector editors like Inkscape, without trouble. So QCustomPlot is useful for both displaying of realtime data inside the application as well as producing high quality plots for other media.

Resources:

171 questions
0
votes
1 answer

How to call a dialog from mainwindow in qt?

//functions for plotting graph void MainWindow::opengraph() { QDialog* graphdialog = new QDialog; Ui::graph ui_graph ; ui_graph.setupUi(graphdialog); setGeometry(400, 250, 542, 390); setWindowTitle("Graph"); …
Amar
  • 379
  • 2
  • 5
  • 18
-1
votes
1 answer

Qt additonal library for plot dial ,bars and other objects?

I want to put some good looking objects on my application like plots, dials and other objects. QCustomPlot is available and I think that will be okay for plots but objects available in QWT are very old looking, I want some objects which adds some…
V. Purbia
  • 57
  • 5
-1
votes
1 answer

How to compile QCustomPlot for OSX?

I am usually working on Ubuntu, using CMake and native environment. My project compiles and runs fine. Now I changed to OSX and first of all I receive some warnings when compiling QCustomPlot: QCustomPlot/include/qcustomplot.h:6007:15: warning: …
katang
  • 2,474
  • 5
  • 24
  • 48
-2
votes
1 answer

How to create a real-time scatter plot in Qt without using QCustomPlot?

I am trying to use QtCharts to plot randomly-generated data into a scatter plot in real time. I want to do this using QtCharts, and have even tried repurposing the Qt Audio Example into a solution, but have had no luck. Any advice on how to…
MrFreeze2017
  • 79
  • 1
  • 7
-2
votes
1 answer

c++ taking a formula from a string

The goal of this program is to take a formula from user input (I used QLineEdit) and plot the formula (using QCustomPlot for qt). This is the part of the code that I have trouble with: QVector x(10000), y(10000); for (int i=0; i<10000;…
-2
votes
1 answer

Draw multiple sin with QCustomPlot

I want to draw multiple sin with QCustomPlot in Qt. I want the sins to be bellow each other. actually, I want to show something like ECG. Can anyone help me?
user55340
  • 87
  • 1
  • 6
1 2 3
11
12