I want to display a line on the value axis of my bar chart. When using JS it can be done like this:
valueAxis: { notes: { line: { length: 340, width: 3, color: "#ff0000" }, data: [{value: 730, label: {text: "mid"}}] }},
But when using a TagHelper I am missing the "data: [...]" part. How can I tell the notes-taghelper where to draw the line?
<value-axis> <value-axis-item> <notes> <chart-value-axis-notes-line length="340" width="3" /> </notes> </value-axis-item></value-axis>