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>

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>

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>

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>