QCustomPlot 函数使用详解

1.设置图表背景颜色
    ui->customPlot->setBackground(QColor(197,197,197));

2.设置label颜色
    ui->customPlot->yAxis->setLabelColor(QColor(19, 199, 197));、

3.设置坐标适应线的大小
    ui->customPlot->graph(0)->rescaleAxes();、

4.设置右边y轴显示
    ui->customPlot->yAxis2->setVisible(true);、

5.清除某一根线数据
    ui->customPlot->graph(0)->data()->clear();

6.设置y轴坐标区间
    ui->customPlot->yAxis->setRange(-5, 5);

7.显示网格
  ui->customPlot->xAxis->grid()->setVisible(true);

8.显示legend
  ui->customPlot->legend->setVisible(true);

9.设置可拉动,可缩放
  ui->customPlot->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom);

 

你可能感兴趣的:(QCustomPlot)