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