QCustomPlot填充连接的行

时间:2016-04-21 03:33:41

标签: c++ qt qcustomplot

使用QCustomPlot为QT添加。我不得不绘制可能不是线性的点,因此图形可能看起来像enter image description here

这是怎么回事

enter image description here

但这就是出现的内容

使用此代码

    plotter->addGraph();
    plotter->graph(0)->setData(xVector, yVector);
    plotter->xAxis->setLabel("X");
    plotter->yAxis->setLabel("Y");
    plotter->xAxis->setRange(x_data_range_min x_data_range_max);
    plotter->yAxis->setRange(y_data_range_min, y_data_range_max);
    plotter->replot();
    plotter->saveJpg("test.jpg");
    plotter->close();

现在我找到了部分修复,通过添加此选项来获取连接线并仅显示点,

    plotter->graph(0)->setLineStyle((QCPGraph::LineStyle)QCPGraph::lsNone);
    plotter->graph()->setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssDisc , 3));

结果就是这个但是有问题,它留下了一个我无法拥有的大胆点

enter image description here

所以这是一个半解决方案。所以我继续并添加了A. Sarid在下面的回复中提到的内容。我认为第一张图可能很好,但看起来像这样的任何其他图

enter image description here

所以我不确定哪种解决方案只能按照从阵列接收它们的顺序连接点

1 个答案:

答案 0 :(得分:2)

我前几天遇到了同样的问题。 您需要使用QCPCurve Class而不是图表。以下是如何执行此操作的一个小示例:

this->newCurve = new QCPCurve(ui->customPlot->xAxis, ui->customPlot->yAxis);
ui->customPlot->addPlottable(this->newCurve);

然后您可以像使用图形一样使用它,例如:

this->newCurve->setData(x, y);