categoryAxis.notes.data.positionString
(default: "inside")
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: {
data: [
{
value: "Q2",
text: "Second Quarter",
position: "top"
}
]
}
},
series: [
{ data: [1, 2, 3, 4] }
]
});
</script>
In this article