{
drawTime: 'beforeDraw',
type: 'label',
color: 'rgba(0, 32, 51, 0.6)',
font: {
size: 10,
},
xValue: x,
xAdjust: ctx => {
console.log('el', ctx.element); // get element with width
console.log('el w', ctx.element.width); // undefined
// return ctx.element ? -(ctx.element.width/2) : 0
return -130;
},
yValue: y,
textAlign: 'right',
content: [trend.string, `R2: ${trend.r2}`],
enabled: true
};
But element.width sometime is undefined. How to resolve this?

I want adjust label position according to his width with this code:
But element.width sometime is undefined. How to resolve this?
