I have encountered an issue with my kendo chart. The series hover works fine when the mouse hovers over the serie, but I am facing a problem where the value in the line does not appear as expected. I am unsure of why this is happening.
$("#chart1").data("kendoChart").setOptions({
categoryAxis: [{
majorGridLines: {
visible: true,
step: 10
},
line: {
visible: false
},
labels: {
rotation: 'auto'
},
notes: {
icon: {
type: 'square',
},
data:[{
value: this.selectionPosStart,
label: {
text: 'P',
background: color1,
color: 'white'
},
line: {
color: color1,
length: length,
width: 2,
}
}, {
value: this.selectionPosEnd,
label: {
text: 'D',
background: color2,
color: 'white'
},
line: {
color: color2,
opacity: 0.5,
length: length,
width: 2
}
}],
}
}],
valueAxis: {
majorUnit: 1
},
});
Thank you!