QCustomPlot 簡單使用 一

2021-09-28 15:31:29 字數 983 閱讀 2442

根據官方例項修改,主要實現如上效果,qcustomplot 繪圖的座標軸正常有四個 :橫軸下邊(xaxis)預設顯示,橫軸上邊(xaxis2),縱軸左邊(yaxis)預設顯示,縱軸右邊邊(yaxis2)。

demoname = "quadratic demo";

// generate some data:

qvectorx(101), y(101); // initialize with entries 0..100

for (int i=0; i<101; ++i)

// create graph and assign data to it:

customplot->addgraph(); /*建立乙個圖表*/

customplot->graph(0)->setdata(x, y); /*設定資料*/

// give the axes some labels:

customplot->xaxis2->setlabel("x2");

customplot->xaxis->setvisible(false);

customplot->yaxis->setlabel("y"); /*設定座標軸的名字*/

// set axes ranges, so we see all data:

customplot->xaxis2->setrange(-1, 1);

customplot->xaxis2->setvisible(true); /*設定是否顯示*/

customplot->yaxis->setrange(0, 1); /*設定座標軸的範圍*/

customplot->yaxis->setrangereversed(true);/*刻度範圍是否翻轉,即刻度0變為最大值,最大值變為最小值*/

QcustomPlot 配置使用

1.qt 然後在pro裡面新增 qt core gui greaterthan qt major vesion,4 qt widgets printsupport qt 5.0以上版本支援列印就可以直接使用了 可以在ui design裡面 新增widget控制項然後右鍵提公升為qcustomplot...

QChart與QCustomPlot簡單運用

qchart的使用 條件 需要在.pro檔案新增qt charts 四個標頭檔案的作用 include 類似於畫筆 include 類似於畫布 include 類 series 是用來新增資料的物件 可以理解為乙個集合 include 用來自定義圖表中的x,y座標軸 定義了五個物件qchartvie...

qcustomplot的配置使用

2021.01.15 首先鏈結幾個 吧 最最終解決方案參考 編譯不通過的辦法 qcustomplot是乙個用於繪圖和資料視覺化的qt小組件。它沒有多餘的依賴關係,並且有完善的說明文件。該繪相簿專注於製作美觀 顯示質量高的2d繪圖和圖表,並在實時視覺化應用程式中有較高效能。一直出現的問題 這是乙個介紹...