categoryAxis.notes.data.line Object
The line of the note.
categoryAxis.notes.data.line.width Number
The line width of the note.
Example - set the category axis note line width
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
categoryAxis: {
notes: {
data: [{
value: 1,
line: {
width: 4
}
}]
}
}
});
</script>
categoryAxis.notes.data.line.color String
The line color of the note.
Example - set the category axis note color width
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
categoryAxis: {
notes: {
data: [{
value: 1,
line: {
color: "#aa00bb"
}
}]
}
}
});
</script>
categoryAxis.notes.data.line.length Number
The length of the connecting lines in pixels.
Example - set the category axis note color width
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
categoryAxis: {
notes: {
data: [{
value: 1,
line: {
length: 20
}
}]
}
}
});
</script>