目录
1. 创建图例(QwtLegend直接把该plot的所有图例都添加)
一、核心代码
// 创建图例,添加进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 {
.......
}
}