scale.labels.borderObject

The border of the labels.

Example

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 80
    }],
    scale: {
        labels: {
            border: {
                color: "#999999",
                width: 1,
                dashType: "solid"
            }
        }
    }
});
</script>

scale.labels.border.colorString(default: "black")

The color of the border. Any valid CSS color string will work here, including hex and rgb.

Example

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 45
    }],
    scale: {
        labels: {
            border: {
                color: "#ff0000",
                width: 2
            }
        }
    }
});
</script>

scale.labels.border.dashTypeString(default: "solid")

The dash type of the border.

Example

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 30
    }],
    scale: {
        labels: {
            border: {
                color: "#333333",
                width: 1,
                dashType: "dash"
            }
        }
    }
});
</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.

scale.labels.border.opacityNumber(default: 1)

The opacity of the border. By default the border is opaque.

Example

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 60
    }],
    scale: {
        labels: {
            border: {
                color: "#000000",
                width: 3,
                opacity: 0.5
            }
        }
    }
});
</script>

scale.labels.border.widthNumber(default: 0)

The width of the border.

Example

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    pointer: [{
        value: 75
    }],
    scale: {
        labels: {
            border: {
                color: "#666666",
                width: 2
            }
        }
    }
});
</script>