valueAxis.notes.data.icon Object
The icon of the note.
valueAxis.notes.data.icon.background String
The background color of the note icon.
Example - set the value axis note icon background
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
valueAxis: {
notes: {
data: [{
value: 1,
icon: {
background: "red"
}
}]
}
}
});
</script>
valueAxis.notes.data.icon.border Object
The border of the icon.
Example - set the value axis note icon border
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
valueAxis: {
notes: {
data: [{
value: 1,
icon: {
border: {
width: 2,
color: "red"
}
}
}]
}
}
});
</script>
valueAxis.notes.data.icon.border.color String
The border color of the icon.
Example - set the value axis note icon border color
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
valueAxis: {
notes: {
data: [{
value: 1,
icon: {
border: {
width: 2,
color: "red"
}
}
}]
}
}
});
</script>
valueAxis.notes.data.icon.border.width Number
The border width of the icon.
Example - set the value axis note icon border width
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
valueAxis: {
notes: {
data: [{
value: 1,
icon: {
border: {
width: 2,
color: "red"
}
}
}]
}
}
});
</script>
valueAxis.notes.data.icon.size Number
The size of the icon.
Example - set the value axis note icon size
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
valueAxis: {
notes: {
data: [{
value: 1,
icon: {
size: 30
}
}]
}
}
});
</script>
valueAxis.notes.data.icon.type String
(default: "circle")
The icon shape.
The supported values are:
- "circle" - the marker shape is circle.
- "square" - the marker shape is square.
- "triangle" - the marker shape is triangle.
Example - set the value axis note icon shape
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
valueAxis: {
notes: {
data: [{
value: 1,
icon: {
shape: "triangle"
}
}]
}
}
});
</script>
valueAxis.notes.data.icon.visible Boolean
(default: "true")
The icon visibility.
Example - set the value axis note icon visibility
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
valueAxis: {
notes: {
data: [{
value: 1,
icon: {
visible: false
}
}]
}
}
});
</script>