<kendo:chart-categoryAxisItem-plotBand-label>

The label configuration of the plotband.

Example

<kendo:chart-categoryAxisItem-plotBand>
    <kendo:chart-categoryAxisItem-plotBand-label></kendo:chart-categoryAxisItem-plotBand-label>
</kendo:chart-categoryAxisItem-plotBand>

Configuration Attributes

align java.lang.String

The position of the plotband label.The supported values are: "left" - the plotband label is positioned on the left; "right" - the plotband label is positioned on the right or "center" - the plotband label is positioned in the center.

Example

<kendo:chart-categoryAxisItem-plotBand-label align="align">
</kendo:chart-categoryAxisItem-plotBand-label>

background java.lang.String

The background color of the label. Accepts a valid CSS color string, including hex and rgb.

Example

<kendo:chart-categoryAxisItem-plotBand-label background="background">
</kendo:chart-categoryAxisItem-plotBand-label>

color java.lang.String

The text color of the label. Accepts a valid CSS color string, including hex and rgb.

Example

<kendo:chart-categoryAxisItem-plotBand-label color="color">
</kendo:chart-categoryAxisItem-plotBand-label>

font java.lang.String

The font style of the label.

Example

<kendo:chart-categoryAxisItem-plotBand-label font="font">
</kendo:chart-categoryAxisItem-plotBand-label>

margin float

The margin of the label. A numeric value will set all margins. Further configuration is available via kendo:chart-categoryAxisItem-plotBand-label-margin.

Example

<kendo:chart-categoryAxisItem-plotBand-label margin="margin">
</kendo:chart-categoryAxisItem-plotBand-label>

padding float

The padding of the label. A numeric value will set all paddings. Further configuration is available via kendo:chart-categoryAxisItem-plotBand-label-padding.

Example

<kendo:chart-categoryAxisItem-plotBand-label padding="padding">
</kendo:chart-categoryAxisItem-plotBand-label>

position java.lang.String

The position of the label.The supported values are: "top" - the axis label is positioned on the top; "bottom" - the axis label is positioned on the bottom or "center" - the axis label is positioned in the center.

Example

<kendo:chart-categoryAxisItem-plotBand-label position="position">
</kendo:chart-categoryAxisItem-plotBand-label>

rotation float

The rotation angle of the label. By default the label is not rotated.

Example

<kendo:chart-categoryAxisItem-plotBand-label rotation="rotation">
</kendo:chart-categoryAxisItem-plotBand-label>

text java.lang.String

The text of the label.

Example

<kendo:chart-categoryAxisItem-plotBand-label text="text">
</kendo:chart-categoryAxisItem-plotBand-label>

visible boolean

If set to false the chart will not display the label.

Example

<kendo:chart-categoryAxisItem-plotBand-label visible="visible">
</kendo:chart-categoryAxisItem-plotBand-label>

visual java.lang.String

A function that can be used to create a custom visual for the label. The available argument fields are: text - the label text.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; options - the label options. or createVisual - a function that can be used to get the default visual..

Example

<kendo:chart-categoryAxisItem-plotBand-label visual="visual">
</kendo:chart-categoryAxisItem-plotBand-label>

Configuration JSP Tags

kendo:chart-categoryAxisItem-plotBand-label-border

The border of the label.

More documentation is available at kendo:chart-categoryAxisItem-plotBand-label-border.

Example

<kendo:chart-categoryAxisItem-plotBand-label>
    <kendo:chart-categoryAxisItem-plotBand-label-border></kendo:chart-categoryAxisItem-plotBand-label-border>
</kendo:chart-categoryAxisItem-plotBand-label>

kendo:chart-categoryAxisItem-plotBand-label-margin

The margin of the label. A numeric value will set all margins.

More documentation is available at kendo:chart-categoryAxisItem-plotBand-label-margin.

Example

<kendo:chart-categoryAxisItem-plotBand-label>
    <kendo:chart-categoryAxisItem-plotBand-label-margin></kendo:chart-categoryAxisItem-plotBand-label-margin>
</kendo:chart-categoryAxisItem-plotBand-label>

kendo:chart-categoryAxisItem-plotBand-label-padding

The padding of the label. A numeric value will set all paddings.

More documentation is available at kendo:chart-categoryAxisItem-plotBand-label-padding.

Example

<kendo:chart-categoryAxisItem-plotBand-label>
    <kendo:chart-categoryAxisItem-plotBand-label-padding></kendo:chart-categoryAxisItem-plotBand-label-padding>
</kendo:chart-categoryAxisItem-plotBand-label>

Event Attributes

visual String

A function that can be used to create a custom visual for the label. The available argument fields are: text - the label text.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; options - the label options. or createVisual - a function that can be used to get the default visual..

Example

<kendo:chart-categoryAxisItem-plotBand-label visual="handle_visual">
</kendo:chart-categoryAxisItem-plotBand-label>
<script>
    function handle_visual(e) {
        // Code to handle the visual event.
    }
</script>

Event Tags

kendo:chart-categoryAxisItem-plotBand-label-visual

A function that can be used to create a custom visual for the label. The available argument fields are: text - the label text.; rect - the kendo.geometry.Rect that defines where the visual should be rendered.; sender - the chart instance (may be undefined).; options - the label options. or createVisual - a function that can be used to get the default visual..

Example

<kendo:chart-categoryAxisItem-plotBand-label>
    <kendo:chart-categoryAxisItem-plotBand-label-visual>
        <script>
            function(e) {
                // Code to handle the visual event.
            }
        </script>
    </kendo:chart-categoryAxisItem-plotBand-label-visual>
</kendo:chart-categoryAxisItem-plotBand-label>
In this article
Not finding the help you need?