<kendo:arcGauge-scale-labels>

Configures the scale labels.

Example

<kendo:arcGauge-scale>
    <kendo:arcGauge-scale-labels></kendo:arcGauge-scale-labels>
</kendo:arcGauge-scale>

Configuration Attributes

background java.lang.String

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

Example

<kendo:arcGauge-scale-labels background="background">
</kendo:arcGauge-scale-labels>

color java.lang.String

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

Example

<kendo:arcGauge-scale-labels color="color">
</kendo:arcGauge-scale-labels>

font java.lang.String

The font style of the labels.

Example

<kendo:arcGauge-scale-labels font="font">
</kendo:arcGauge-scale-labels>

format java.lang.String

The format of the labels.

Example

<kendo:arcGauge-scale-labels format="format">
</kendo:arcGauge-scale-labels>

margin float

The margin of the labels. Further configuration is available via kendo:arcGauge-scale-labels-margin.

Example

<kendo:arcGauge-scale-labels margin="margin">
</kendo:arcGauge-scale-labels>

padding float

The padding of the labels. Further configuration is available via kendo:arcGauge-scale-labels-padding.

Example

<kendo:arcGauge-scale-labels padding="padding">
</kendo:arcGauge-scale-labels>

position java.lang.String

Sets the labels position

Example

<kendo:arcGauge-scale-labels position="position">
</kendo:arcGauge-scale-labels>

template java.lang.String

The label template. Template variables: * value - the value

Example

<kendo:arcGauge-scale-labels template="template">
</kendo:arcGauge-scale-labels>

visible boolean

The visibility of the labels.

Example

<kendo:arcGauge-scale-labels visible="visible">
</kendo:arcGauge-scale-labels>

Configuration JSP Tags

kendo:arcGauge-scale-labels-border

The border of the labels.

More documentation is available at kendo:arcGauge-scale-labels-border.

Example

<kendo:arcGauge-scale-labels>
    <kendo:arcGauge-scale-labels-border></kendo:arcGauge-scale-labels-border>
</kendo:arcGauge-scale-labels>

kendo:arcGauge-scale-labels-margin

The margin of the labels.

More documentation is available at kendo:arcGauge-scale-labels-margin.

Example

<kendo:arcGauge-scale-labels>
    <kendo:arcGauge-scale-labels-margin></kendo:arcGauge-scale-labels-margin>
</kendo:arcGauge-scale-labels>

kendo:arcGauge-scale-labels-padding

The padding of the labels.

More documentation is available at kendo:arcGauge-scale-labels-padding.

Example

<kendo:arcGauge-scale-labels>
    <kendo:arcGauge-scale-labels-padding></kendo:arcGauge-scale-labels-padding>
</kendo:arcGauge-scale-labels>

Event Attributes

template String

The label template. Template variables: * value - the value

Example

<kendo:arcGauge-scale-labels template="handle_template">
</kendo:arcGauge-scale-labels>
<script>
    function handle_template(e) {
        // Code to handle the template event.
    }
</script>

Event Tags

kendo:arcGauge-scale-labels-template

The label template. Template variables: * value - the value

Example

<kendo:arcGauge-scale-labels>
    <kendo:arcGauge-scale-labels-template>
        <script>
            function(e) {
                // Code to handle the template event.
            }
        </script>
    </kendo:arcGauge-scale-labels-template>
</kendo:arcGauge-scale-labels>
In this article
Not finding the help you need?