scale.labels.border.dashTypeString(default: "solid")
The dash type of the border.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoCircularGauge({
value: 50,
scale: {
labels: {
border: {
dashType: "dot",
color: "#0058e9",
width: 1
}
}
}
});
</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.