customplot中没有xAxis->dataRange()函数
时间: 2023-11-22 17:53:57 浏览: 61
Qt QCustomPlot 的使用-折线图
5星 · 资源好评率100%
是的,CustomPlot中并没有名为`dataRange()`的函数。如果您需要获取x轴的数据范围,可以使用以下方式:
```cpp
// 获取x轴范围
QCPRange xRange = customPlot->xAxis->range();
```
如果您需要获取x轴上的数据点,可以使用以下方式:
```cpp
// 获取x轴上的数据点
QVector<double> xData = customPlot->graph(graphIndex)->data()->keys();
```
其中,`graphIndex`为您想要获取数据的曲线在CustomPlot中的索引。
阅读全文