categoryAxis.notes.positionString
The position of the category axis note.
- "top" - The note is positioned on the top.
- "bottom" - The note is positioned on the bottom.
- "left" - The note is positioned on the left.
- "right" - The note is positioned on the right.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
categoryAxis: {
categories: ["Q1", "Q2", "Q3", "Q4"],
notes: {
position: "left",
icon: {
background: "green",
size: 12
},
label: {
text: "Important"
}
}
},
series: [
{ data: [1, 2, 3, 4] }
]
});
</script>
In this article