├── .gitignore ├── LICENSE ├── docs ├── .nojekyll ├── README.md ├── _sidebar.md ├── index.html └── zh-cn │ ├── QCustomPlot之Item的移动和缩放(十二).md │ ├── QCustomPlot之Item(十).md │ ├── QCustomPlot之个性化外观(二).md │ ├── QCustomPlot之参数曲线(七).md │ ├── QCustomPlot之层和布局(四).md │ ├── QCustomPlot之平滑曲线上(八).md │ ├── QCustomPlot之平滑曲线下(九).md │ ├── QCustomPlot之开始(一).md │ ├── QCustomPlot之柱状图(三).md │ ├── QCustomPlot之简单动态图(六).md │ └── QCustomPlot之轴矩形和轴(五).md └── src ├── CMakeLists.txt ├── examples ├── 001_start │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 003_bar_chart_demo │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 004_layout_demo │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 005_axisrect_demo │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 006_dynamic_data_demo │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 007_lemniscate_demo │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 008_smooth_graph_demo_01 │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 009_smooth_graph_demo_02 │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h ├── 012_stretch_item_demo │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ └── mainwindow.h └── CMakeLists.txt └── qcustomplot ├── CMakeLists.txt ├── GPL.txt ├── changelog.txt ├── qcpplot.cpp ├── qcpplot.h ├── qcpsizehandle.cpp ├── qcpsizehandle.h ├── qcpsizehandlemanager.cpp ├── qcpsizehandlemanager.h ├── qcpsmoothcurve.cpp ├── qcpsmoothcurve.h ├── qcptextbars.cpp ├── qcptextbars.h ├── qcustomplot.cpp └── qcustomplot.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之Item的移动和缩放(十二).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之Item的移动和缩放(十二).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之Item(十).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之Item(十).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之个性化外观(二).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之个性化外观(二).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之参数曲线(七).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之参数曲线(七).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之层和布局(四).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之层和布局(四).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之平滑曲线上(八).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之平滑曲线上(八).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之平滑曲线下(九).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之平滑曲线下(九).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之开始(一).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之开始(一).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之柱状图(三).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之柱状图(三).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之简单动态图(六).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之简单动态图(六).md -------------------------------------------------------------------------------- /docs/zh-cn/QCustomPlot之轴矩形和轴(五).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/docs/zh-cn/QCustomPlot之轴矩形和轴(五).md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/001_start/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/001_start/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/001_start/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/001_start/main.cpp -------------------------------------------------------------------------------- /src/examples/001_start/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/001_start/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/001_start/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/001_start/mainwindow.h -------------------------------------------------------------------------------- /src/examples/003_bar_chart_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/003_bar_chart_demo/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/003_bar_chart_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/003_bar_chart_demo/main.cpp -------------------------------------------------------------------------------- /src/examples/003_bar_chart_demo/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/003_bar_chart_demo/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/003_bar_chart_demo/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/003_bar_chart_demo/mainwindow.h -------------------------------------------------------------------------------- /src/examples/004_layout_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/004_layout_demo/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/004_layout_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/004_layout_demo/main.cpp -------------------------------------------------------------------------------- /src/examples/004_layout_demo/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/004_layout_demo/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/004_layout_demo/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/004_layout_demo/mainwindow.h -------------------------------------------------------------------------------- /src/examples/005_axisrect_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/005_axisrect_demo/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/005_axisrect_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/005_axisrect_demo/main.cpp -------------------------------------------------------------------------------- /src/examples/005_axisrect_demo/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/005_axisrect_demo/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/005_axisrect_demo/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/005_axisrect_demo/mainwindow.h -------------------------------------------------------------------------------- /src/examples/006_dynamic_data_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/006_dynamic_data_demo/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/006_dynamic_data_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/006_dynamic_data_demo/main.cpp -------------------------------------------------------------------------------- /src/examples/006_dynamic_data_demo/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/006_dynamic_data_demo/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/006_dynamic_data_demo/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/006_dynamic_data_demo/mainwindow.h -------------------------------------------------------------------------------- /src/examples/007_lemniscate_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/007_lemniscate_demo/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/007_lemniscate_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/007_lemniscate_demo/main.cpp -------------------------------------------------------------------------------- /src/examples/007_lemniscate_demo/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/007_lemniscate_demo/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/007_lemniscate_demo/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/007_lemniscate_demo/mainwindow.h -------------------------------------------------------------------------------- /src/examples/008_smooth_graph_demo_01/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/008_smooth_graph_demo_01/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/008_smooth_graph_demo_01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/008_smooth_graph_demo_01/main.cpp -------------------------------------------------------------------------------- /src/examples/008_smooth_graph_demo_01/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/008_smooth_graph_demo_01/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/008_smooth_graph_demo_01/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/008_smooth_graph_demo_01/mainwindow.h -------------------------------------------------------------------------------- /src/examples/009_smooth_graph_demo_02/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/009_smooth_graph_demo_02/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/009_smooth_graph_demo_02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/009_smooth_graph_demo_02/main.cpp -------------------------------------------------------------------------------- /src/examples/009_smooth_graph_demo_02/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/009_smooth_graph_demo_02/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/009_smooth_graph_demo_02/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/009_smooth_graph_demo_02/mainwindow.h -------------------------------------------------------------------------------- /src/examples/012_stretch_item_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/012_stretch_item_demo/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/012_stretch_item_demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/012_stretch_item_demo/main.cpp -------------------------------------------------------------------------------- /src/examples/012_stretch_item_demo/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/012_stretch_item_demo/mainwindow.cpp -------------------------------------------------------------------------------- /src/examples/012_stretch_item_demo/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/012_stretch_item_demo/mainwindow.h -------------------------------------------------------------------------------- /src/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/examples/CMakeLists.txt -------------------------------------------------------------------------------- /src/qcustomplot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/CMakeLists.txt -------------------------------------------------------------------------------- /src/qcustomplot/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/GPL.txt -------------------------------------------------------------------------------- /src/qcustomplot/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/changelog.txt -------------------------------------------------------------------------------- /src/qcustomplot/qcpplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpplot.cpp -------------------------------------------------------------------------------- /src/qcustomplot/qcpplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpplot.h -------------------------------------------------------------------------------- /src/qcustomplot/qcpsizehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpsizehandle.cpp -------------------------------------------------------------------------------- /src/qcustomplot/qcpsizehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpsizehandle.h -------------------------------------------------------------------------------- /src/qcustomplot/qcpsizehandlemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpsizehandlemanager.cpp -------------------------------------------------------------------------------- /src/qcustomplot/qcpsizehandlemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpsizehandlemanager.h -------------------------------------------------------------------------------- /src/qcustomplot/qcpsmoothcurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpsmoothcurve.cpp -------------------------------------------------------------------------------- /src/qcustomplot/qcpsmoothcurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcpsmoothcurve.h -------------------------------------------------------------------------------- /src/qcustomplot/qcptextbars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcptextbars.cpp -------------------------------------------------------------------------------- /src/qcustomplot/qcptextbars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcptextbars.h -------------------------------------------------------------------------------- /src/qcustomplot/qcustomplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcustomplot.cpp -------------------------------------------------------------------------------- /src/qcustomplot/qcustomplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancelot-Yagami/QCustomPlot-Manual/HEAD/src/qcustomplot/qcustomplot.h --------------------------------------------------------------------------------