QWT QwtMarker中Label的文本对齐

对于QwtMarker的Label对齐方式设置可以使用函数

void QwtPlotMarker::setLabelAlignment(Qt::Alignment align)

但这只能设置相对于标记下的对齐方式,具体说明可以看文档

In case of QwtPlotMarker::HLine the alignment is relative to the y position of the marker, but the horizontal flags correspond to the canvas rectangle. In case of QwtPlotMarker::VLine the alignment is relative to the x position of the marker, but the vertical flags correspond to the canvas rectangle.

In all other styles the alignment is relative to the marker’s position.

那么怎样设置label中文本的对齐方式呢?

通过查看QWT的源码发现最终绘制文本的对齐参数来自于QwtTextrenderFlags属性。
所以将文本的对齐方式设置到renderFlags属性就可以了

QwtText label;
label.setRenderFlags(Qt::AlignRight);
marker->setLabel(label);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值