navigator.series.border.dashTypeString(default: "solid")
The dash type of the border.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
series: [{
type: "candlestick",
openField: "open",
highField: "high",
lowField: "low",
closeField: "close",
border: {
dashType: "dash"
}
}]
},
dataSource: {
data: [
{ date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
{ date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
]
}
});
</script>
"solid"
Specifies a solid line.
"dot"
Specifies a line consisting of dots.
"dash"
Specifies a line consisting of dashes.
"longDash"
Specifies a line consisting of a repeating pattern of long-dash.
"dashDot"
Specifies a line consisting of a repeating pattern of dash-dot.
"longDashDot"
Specifies a line consisting of a repeating pattern of long-dash-dot.
"longDashDotDot"
Specifies a line consisting of a repeating pattern of long-dash-dot-dot.
In this article