Is there any open-source or free chart library for Qt? I only need XY charts, not bar charts or anything else.
相关问题
- Sorting 3 numbers without branching [closed]
- QML: Cannot read property 'xxx' of undefin
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
相关文章
- ubuntu20.4中c#通过c++库调用python脚本
- Qt槽函数自动执行多遍
- Mercurial Commit Charts / Graphs [closed]
- Class layout in C++: Why are members sometimes ord
- How to mock methods return object with deleted cop
- Which is the best way to multiply a large and spar
- C++ default constructor does not initialize pointe
- Selecting only the first few characters in a strin
KD Chart
There's two I know of:
Qwt
QtiPlot: the app is paid, but the code is not I think (you can download the source)
QCustomPlot is a rather compact Qt widget for plotting, with the possibility of extension to your needs, under the GPL license. It has no further dependencies and is fully documented, including internal functions.
Check the QCustomPlot website.