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

Pointer.border

configuration

The border of the pointer.

<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
    pointer: {
        value: 25,
        border: {
            color: "#e91e63",
            width: 2,
            dashType: "solid"
        }
    },
    scale: {
        min: 0,
        max: 50
    }
});
</script>

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

<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
    pointer: {
        value: 25,
        border: {
            color: "#2196f3",
            width: 1
        }
    },
    scale: {
        min: 0,
        max: 50
    }
});
</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").kendoLinearGauge({
    pointer: {
        value: 25,
        border: {
            color: "#ff5722",
            width: 2,
            dashType: "dot"
        }
    },
    scale: {
        min: 0,
        max: 50
    }
});
</script>

The width of the border.

Default: 1

<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
    pointer: {
        value: 25,
        border: {
            color: "#9c27b0",
            width: 3
        }
    },
    scale: {
        min: 0,
        max: 50
    }
});
</script>