navigator.categoryAxis.notes.data.lineObject
The line of the note.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
categoryAxis: {
notes: {
data: [{
value: new Date("2012/01/01"),
line: {
width: 2,
color: "red",
length: 20
}
}]
}
}
}
});
</script>
navigator.categoryAxis.notes.data.line.widthNumber
The line width of the note.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
categoryAxis: {
notes: {
data: [{
value: new Date("2012/01/01"),
line: {
width: 3
}
}]
}
}
}
});
</script>
navigator.categoryAxis.notes.data.line.colorString
The line color of the note.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
categoryAxis: {
notes: {
data: [{
value: new Date("2012/01/01"),
line: {
color: "blue"
}
}]
}
}
}
});
</script>
navigator.categoryAxis.notes.data.line.lengthNumber
The length of the connecting lines in pixels.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
categoryAxis: {
notes: {
data: [{
value: new Date("2012/01/01"),
line: {
length: 25
}
}]
}
}
}
});
</script>
In this article