gpt4 book ai didi

c++ - QCustomPlot 填充连接线

转载 作者:搜寻专家 更新时间:2023-10-31 02:16:36 24 4
gpt4 key购买 nike

使用 QT 的 QCustomPlot 插件。我不得不绘制可能非线性的点,因此图形可能看起来像这样 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

所以我不确定哪种解决方案只能使点按照从数组接收到的顺序连接

最佳答案

几天前我遇到了同样的问题。您需要使用 QCPCurve Class而不是图形。这是一个如何做到这一点的小例子:

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

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

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

关于c++ - QCustomPlot 填充连接线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36759136/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com