给QwtPlot和QwtPolarCurve创建图例,多条曲线显示部分图例

目录

一、核心代码

二、实际示例

1. 创建图例(QwtLegend直接把该plot的所有图例都添加)

2. 只显示需要的图例

三、例子运行结果 

一、核心代码

// 创建图例,添加进plot
QwtLegend *plotLegend = new QwtLegend;
m_plot->insertLegend(plotLegend, QwtPlot::TopLegend);

// 获取当前的所有图例项items
QwtPlotItemList items = m_plot->itemList(QwtPlotItem::Rtti_PlotCurve);

// 转为QwtLegendLabel *型数据
const QVariant itemInfo = m_plot->itemToInfo(items[i]);
QwtLegendLabel *legendLabel = dynamic_cast<QwtLegendLabel *>(plotLegend->legendWidget(itemInfo));

// 转入成功,则隐藏该图例
// 可隐藏曲线,items[i]->setVisible(false);
if (legendLabel) legendLabel->setVisible(false);

// 更新
plotLegend->update();

二、实际示例

1. 创建图例
(QwtLegend直接把该plot的所有图例都添加)

QwtLegend *plotLegend = new QwtLegend;
QwtLegend *polarLegend = new QwtLegend;
m_plot->insertLegend(plotLegend, QwtPlot::TopLegend);
m_polarPlot->insertLegend(polarLegend, QwtPolarPlot::TopLegend);

2. 只显示需要的图例

a:当只有一条曲线时,不显示任何图例

b:当大于一条曲线,显示所需的图例

// 假设隐藏下标为1,2,3
vector<int> hidePos = {1, 2, 3};
// 多曲线,隐藏不需要的曲线图例
if (size > 1) {
	if (m_chartStyle == 0) {
        // 获取所有图元item
		QwtPlotItemList items = m_plot->itemList(QwtPlotItem::Rtti_PlotCurve);
		for (int i = 0; i < hidePos.size(); i++) {
            // itemToInfo()函数将图例项转换为QVariant类型的信息,并使用qobject_cast<QwtLegendLabel*>()将其转换为QwtLegendLabel类型的对象
			const QVariant itemInfo = m_plot->itemToInfo(items[hidePos[i] - 1]);
			QwtLegendLabel *legendLabel = dynamic_cast<QwtLegendLabel *>(plotLegend->legendWidget(itemInfo));
            // 将不需要的图例进行隐藏
            // 需要隐藏该曲线 items[i]->setVisible(false)
			if (legendLabel) legendLabel->setVisible(false);
		}
        // 更新图例,否则显示的为全部的图例(五个)
		plotLegend->update();
	} else if (m_chartStyle == 1) {
        // 获取所有图元item
		QwtPolarItemList items = m_polarPlot->itemList();
		for (int i = 0; i < hidePos.size(); i++) {
			const QVariant itemInfo = m_polarPlot->itemToInfo(items[hidePos[i]]);
			QwtLegendLabel *legendLabel = dynamic_cast<QwtLegendLabel *>(polarLegend->legendWidget(itemInfo));
            // 将不需要的图例进行隐藏
            // 需要隐藏该曲线 items[i]->setVisible(false)
			if (legendLabel) legendLabel->setVisible(false);
		}
	}
    // 更新图例,否则显示的为全部的图例
	polarLegend->update();
// 单曲线 隐藏所有图例
} else {
	.......
	}
}

三、例子运行结果 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值