New to Kendo UI for jQueryStart a free 30-day trial

GaugeArea.border

configuration

The border of the gauge area.

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

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

Default: "black"

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    gaugeArea: {
        border: {
            color: "#ff6600",
            width: 3
        }
    },
    pointer: [{
        value: 40
    }]
});
</script>

The dash type of the border.

"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.

Default: "solid"

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    gaugeArea: {
        border: {
            color: "#333333",
            width: 2,
            dashType: "dot"
        }
    },
    pointer: [{
        value: 60
    }]
});
</script>

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

Default: 1

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    gaugeArea: {
        border: {
            color: "#333333",
            width: 4,
            opacity: 0.5
        }
    },
    pointer: [{
        value: 45
    }]
});
</script>

The width of the border.

Default: 0

<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
    gaugeArea: {
        border: {
            color: "#000000",
            width: 5
        }
    },
    pointer: [{
        value: 80
    }]
});
</script>