I'm looking in the documentation but it seems that it is not possible to set the Highlight.Line.Width for a line chart as you can with a OHLC type chart. The JS equivalent would look as follows:
In our case when you hover over the line itself the dot appears on the series line with the data at that point, but the line width stays the same, which is acceptable. However, when you hover over the legend the line width increases dramatically. So if your line was set to 5 to begin with, you end up with a pretty ugly looking line on hover.
Why isn't this possible, or where have I missed the documentation for this configuration?
<script>
$(
"#chart"
).kendoChart({
series: [{
type:
"ohlc"
,
data: [
{ open: 1, high: 3, low: 0, close: 1 },
{ open: 2, high: 4, low: 1, close: 1.5 },
],
highlight: {
line: {
width: 5
}
}
}]
});
</script>
In our case when you hover over the line itself the dot appears on the series line with the data at that point, but the line width stays the same, which is acceptable. However, when you hover over the legend the line width increases dramatically. So if your line was set to 5 to begin with, you end up with a pretty ugly looking line on hover.
Why isn't this possible, or where have I missed the documentation for this configuration?