1.概述
QwtPlotGrid类是Qwt绘图库中用于绘制网格的类。网格是图表中用于显示坐标轴刻度之间的辅助线的一种视觉元素。使用QwtPlotGrid类可以方便地添加水平和垂直网格线到绘图区域上。
以下是类继承关系图:
2.常用接口
分别启用或禁用x和y轴上的网格线。
enableX(bool enable)和enableY(bool enable)
分别启用或禁用x和y轴上的最小网格线。
enableXMin(true)和enableYMin(true);
分别设置网格的主要线和次要线的画笔。可以使用QPen对象来设置线条的颜色、宽度等属性。
setMajorPen(const QPen &pen)和setMinorPen(const QPen &pen)
指定x轴比例分割。
void setXDiv (const QwtScaleDiv &)
指定y轴比例分割。
void setYDiv (const QwtScaleDiv &)
将网格附加到或从QwtPlot中分离。attach()方法用于将网格添加到QwtPlot图表中,而detach()方法则用于从图表中移除网格。
attach(QwtPlot *plot)和detach()
3.示例
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "qwt_plot.h"
#include "qwt_plot_curve.h"
#include "qwt_text.h"
#include "qwt_legend.h"
#include "qwt_symbol.h"
#include "qwt_plot_marker.h"
#include "qwt_plot_grid.h"
#include "qwt_scale_div.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QwtPlot *plot = new QwtPlot(QwtText("sin and cos"),this);
//设置背景色
plot->setCanvasBackground(QBrush(QColor(Qt::white)));
//添加图例
QwtLegend *legend = new QwtLegend();
plot->insertLegend(legend);
//设置坐标轴标题
plot->setAxisTitle(QwtAxis::YLeft,QwtText("Y坐标轴"));
plot->setAxisTitle(QwtAxis::XBottom,QwtText("X坐标轴"));
plot->setAxisScale(QwtAxis::YLeft, -1, 1);//设置左Y轴范围
plot->setAxisScale(QwtAxis::XBottom, 0, 4);//设置左Y轴范围
//自定义X轴的刻度值
QwtScaleDiv gridDiv( 0.0, 4.0, QList<double>(), QList<double>(), QList<double>() << 0.2 << 0.4 << 0.6 << 0.8 );
plot->setAxisScaleDiv( QwtAxis::XBottom, gridDiv );
// add curves1
QwtPlotCurve *curve1 = new QwtPlotCurve( "cos" );
curve1->setRenderHint( QwtPlotItem::RenderAntialiased );
curve1->setPen( Qt::blue );
//curve1->setBrush(QBrush(QColor(Qt::red)));
curve1->setLegendAttribute( QwtPlotCurve::LegendShowLine );
curve1->setYAxis( QwtAxis::YLeft );
curve1->setStyle(QwtPlotCurve::Lines);
curve1->attach( plot );
// add curves2
QwtPlotCurve *curve2 = new QwtPlotCurve( "sin" );
curve2->setRenderHint( QwtPlotItem::RenderAntialiased );
curve2->setPen( Qt::darkGreen );
//curve3->setBrush(QBrush(QColor(Qt::black)));
curve2->setLegendAttribute( QwtPlotCurve::LegendShowLine );
curve2->setYAxis( QwtAxis::YLeft );
curve2->setStyle(QwtPlotCurve::Lines);
curve2->attach( plot );
int numPoints = 100;
QVector<QPointF> points1;
QVector<QPointF> points2;
for (int i = 0; i < numPoints; ++i) {
double x = 4*i / (double)(numPoints - 1); // x范围从0到2
double y = sin(2 * M_PI * x); // 计算sin函数的y值
double y2 = cos(2 * M_PI * x); // 计算sin函数的y值
points1.append(QPointF(x, y));
points2.append(QPointF(x, y2));
}
curve1->setSamples(points2);
curve2->setSamples(points1);
// 创建水平参考线标记
QwtPlotMarker *lineMarker = new QwtPlotMarker();
lineMarker->setLabel(QwtText("zero axis")); // 设置标记的文本标签
lineMarker->setLabelAlignment(Qt::AlignRight | Qt::AlignTop); // 设置标签的对齐方式
lineMarker->setLabelOrientation(Qt::Horizontal); // 设置标签的方向为水平
lineMarker->setLineStyle(QwtPlotMarker::HLine); // 设置标记的线条样式为水平线
lineMarker->setLinePen(Qt::red, 2.0); // 设置标记的线条颜色和宽度
lineMarker->setValue(0.0, 0.0); // 设置标记的坐标位置
// 创建文本标记
QwtPlotMarker *textMarker = new QwtPlotMarker();
textMarker->setLabel(QwtText("(1,0)")); // 设置标记的文本标签
textMarker->setLabelAlignment(Qt::AlignCenter | Qt::AlignTop); // 设置标签的对齐方式
textMarker->setLabelOrientation(Qt::Horizontal); // 设置标签的方向为水平
textMarker->setLineStyle(QwtPlotMarker::NoLine); // 设置标记没有线条
textMarker->setXValue(1); // 设置标记的x坐标
textMarker->setYValue(0); // 设置标记的y坐标
// 将标记附加到QwtPlot中
lineMarker->attach(plot);
textMarker->attach(plot);
// 创建网格对象
QwtPlotGrid *grid = new QwtPlotGrid();
// 启用x轴和y轴上的网格线
grid->enableX(true);
grid->enableY(true);
grid->enableXMin(true);
grid->enableYMin(true);
// 设置网格线的画笔
grid->setMajorPen(QPen(Qt::lightGray, 0, Qt::SolidLine));
grid->setMinorPen(QPen(Qt::lightGray, 0, Qt::DotLine));
// 将网格附加到QwtPlot图表中
grid->attach(plot);
// finally, refresh the plot
plot->replot();
ui->verticalLayout->addWidget(plot);
}
MainWindow::~MainWindow()
{
delete ui;
}
4.相关推荐
Qwt QwtPlotCurve曲线类详解-CSDN博客