categoryAxis.notes.line Object
The line of the notes.
categoryAxis.notes.line.dashType String
(default: "solid")
The dash type of the note line.
The following dash types are supported:
- "dash" - a line consisting of dashes
- "dashDot" - a line consisting of a repeating pattern of dash-dot
- "dot" - a line consisting of dots
- "longDash" - a line consisting of a repeating pattern of long-dash
- "longDashDot" - a line consisting of a repeating pattern of long-dash-dot
- "longDashDotDot" - a line consisting of a repeating pattern of long-dash-dot-dot
- "solid" - a solid line
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 length of the connecting lines in pixels.
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>