我使用chartjs-plugin-annotation
2.1.1版在图表上绘制一条线和几个标签。
使用position: 'end'
时,标签右对齐。
const l1 = {
type: 'line',
label: {
display: true,
content: 'line',
position: 'end',
},
scaleID: 'y',
value: 62,
};
但是,我无法绘制与线标签垂直对齐(向右)的标签注解。
我已经试过好几次了
const l2 = {
type: 'label',
yValue: 0,
position: 'end',
// position { x: 'end' },
content: 'label'
}
我错过什么了吗?
1条答案
按热度按时间gz5pxeao1#
与
xValue
和yValue
选项定义的点相比,标签的位置可用于定义标签必须位于的位置。也许最好的方法是使用行注解,除了值之外,使用相同的配置。
或者在标签注解中,可以按如下方式设置
xValue
和xAdjust
: