码迷,mamicode.com
首页 > 其他好文 > 详细

QCustomPlot图形和图例同步方法

时间:2020-04-08 19:14:15      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:for   tps   legend   oid   gen   cheng   效果   chart   rap   

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图形和图例同步方法

标签:for   tps   legend   oid   gen   cheng   效果   chart   rap   

原文地址:https://www.cnblogs.com/tmblog/p/12661780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!