如何改变 Qcustomplot 中曲线颜色相对于 x 轴的强度?

how to change the intensity of curve colour in Qcustomplot with respect to x-axis?

我有一个问题,我必须绘制来自某些 source.At 源的光线,强度应该是最强的,并且应该随着距离的增加而减小,这是我的 xaxis.If 我正在使用蓝色来绘制我的光线比它在原点处应该是浅蓝色并且应该随着距离变暗。

我已将 QCpcurve 附加到 QCustomplot。

我必须绘制两个向量 X 和 Y

Curve.setpen(blue);
Curve.setdata(X,Y);

问题是如何随着距离的增加改变颜色强度。

请帮忙

您可以通过显示您想要的外观来为 QPen 设置颜色渐变。

QPen::QPen(const QBrush &brush, qreal width, Qt::PenStyle style = Qt::SolidLine, Qt::PenCapStyle cap = Qt::SquareCap, Qt::PenJoinStyle join = Qt::BevelJoin)

Constructs a pen with the specified brush, width, pen style, cap style and join style.

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QCustomPlot *customplot = new QCustomPlot;
    customplot->setWindowTitle("Gradient Color");
    customplot->resize(640, 480);
    QCPCurve curve(customplot->xAxis, customplot->yAxis);
    QVector<double> x, y;
    for(int i=0; i < 1000; i++){
        double x_ = qDegreesToRadians(i*1.0);
        x << x_;
        y << qCos(x_)*qExp(-0.2*x_);
    }
    customplot->xAxis->setRange(0, qDegreesToRadians(1000.0));
    customplot->yAxis->setRange(-1, 1);

    QLinearGradient gradient(customplot->rect().topLeft(), customplot->rect().topRight());
    gradient.setColorAt(0.0, QColor::fromRgb(14, 11, 63));
    gradient.setColorAt(1.0, QColor::fromRgb(58, 98, 240));
    QPen pen(gradient, 5);
    curve.setPen(pen);

    curve.setData(x, y);
    customplot->show();

    return a.exec();
}