Plotting advanced graphs with QML
-
Best solution for me, so fare is using qcustomplot with following extension:
http://www.qcustomplot.com/index.php/support/forum/172
QCustomPlot it under the GPL... but commercial licence is available
-
Hi, I am looking for good solutions of making advanced customizable 2d graphs plots in QML.
What solutions exest? or do I have to create my own in C++? -
I have used QChart (=port of Chart.js). Chart.js works pretty well if you need basic charting (for instance no interaction with the chart). The Qml port relies on an old Chart.js version which does not support multi-axis. Also you have to pass well-proprocessed data to the chart to get correct axis labeling, grids, etc.
Qt also offers a charting component with the professional licenses but I have not tried this.
-
I have used QChart (=port of Chart.js). Chart.js works pretty well if you need basic charting (for instance no interaction with the chart). The Qml port relies on an old Chart.js version which does not support multi-axis. Also you have to pass well-proprocessed data to the chart to get correct axis labeling, grids, etc.
Qt also offers a charting component with the professional licenses but I have not tried this.
-
@Vincent007
Is it free of cost? I see that It will be included in 5.6. How about adding it to 5.5? any idea? Thanks -
@Vincent007
Is it free of cost? I see that It will be included in 5.6. How about adding it to 5.5? any idea? Thanks@vishnu Yes, if you can accept GPL. I tried Qt charts in Qt 5.6. It works. You can build Qt charts by yourself. http://doc.qt.io/QtCharts/qtcharts-getting-started.html