QCustomPlot图形和图例同步方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QCustomPlot图形和图例同步方法相关的知识,希望对你有一定的参考价值。

QCustomPlot图形和图例同步前言

技术图片

我现在有几条折线,折线和图例一一对应,不管点击图例或者折线,相关的都高亮

QCustomPlot图形和图例同步方法

// 链接信号槽 m_plot即为QCustomPlot对象
connect(m_plot, SIGNAL(selectionChangedByUser()), this, SLOT(selectionChanged()));

 

void ChartOperate::selectionChanged()
{
    for (int i=0; i<m_plot->graphCount(); ++i)
    {
        setSelectChtLineStyle(i);
    }
}

void ChartOperate::setSelectChtLineStyle(int sceneIndex)
{
    QCPGraph *graph = m_plot->graph(sceneIndex);
    QCPPlottableLegendItem *item = m_plot->legend->itemWithPlottable(graph);

    if (item->selected() || graph->selected())
    {
        item->setSelected(true);

        QPen pen;
        pen.setWidth(3);
        pen.setColor(COLOR_BLUE);
        graph->selectionDecorator()->setPen(pen);

        graph->setSelection(QCPDataSelection(graph->data()->dataRange()));
    }
}

 

QCustomPlot图形和图例同步最终效果

技术图片

原文地址:https://itzhai.cn/xuexijiaocheng/884.html

以上是关于QCustomPlot图形和图例同步方法的主要内容,如果未能解决你的问题,请参考以下文章

QT_QCustomPlot学习

Qt 之 QCustomPlot(图形库)

QCustomPlot(二):图形绘制基础

QCustomPlot(三):图形绘制基础之样式修改

qcustomplot 实时图形 怎么让图不走了

QCustomPlot 曲线各种属性详细介绍