<kendo:stockChart-navigator-categoryAxis-labels>

The axis labels configuration.

Example

<kendo:stockChart-navigator-categoryAxis>
    <kendo:stockChart-navigator-categoryAxis-labels></kendo:stockChart-navigator-categoryAxis-labels>
</kendo:stockChart-navigator-categoryAxis>

Configuration Attributes

background java.lang.String

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

Example

<kendo:stockChart-navigator-categoryAxis-labels background="background">
</kendo:stockChart-navigator-categoryAxis-labels>

color java.lang.String

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

Example

<kendo:stockChart-navigator-categoryAxis-labels color="color">
</kendo:stockChart-navigator-categoryAxis-labels>

culture java.lang.String

The culture to use when formatting date values. See the globalization overview for more information.

Example

<kendo:stockChart-navigator-categoryAxis-labels culture="culture">
</kendo:stockChart-navigator-categoryAxis-labels>

font java.lang.String

The font style of the labels.

Example

<kendo:stockChart-navigator-categoryAxis-labels font="font">
</kendo:stockChart-navigator-categoryAxis-labels>

format java.lang.String

The format used to display the labels. Uses kendo.format. Contains one placeholder ("{0}") which represents the category value.

Example

<kendo:stockChart-navigator-categoryAxis-labels format="format">
</kendo:stockChart-navigator-categoryAxis-labels>

margin float

The margin of the labels. A numeric value will set all margins. Further configuration is available via kendo:stockChart-navigator-categoryAxis-labels-margin.

Example

<kendo:stockChart-navigator-categoryAxis-labels margin="margin">
</kendo:stockChart-navigator-categoryAxis-labels>

mirror boolean

If set to true the chart will mirror the axis labels and ticks. If the labels are normally on the left side of the axis, mirroring the axis will render them to the right.

Example

<kendo:stockChart-navigator-categoryAxis-labels mirror="mirror">
</kendo:stockChart-navigator-categoryAxis-labels>

padding float

The padding of the labels. A numeric value will set all paddings. Further configuration is available via kendo:stockChart-navigator-categoryAxis-labels-padding.

Example

<kendo:stockChart-navigator-categoryAxis-labels padding="padding">
</kendo:stockChart-navigator-categoryAxis-labels>

rotation float

The rotation angle of the labels. By default the labels are not rotated.

Example

<kendo:stockChart-navigator-categoryAxis-labels rotation="rotation">
</kendo:stockChart-navigator-categoryAxis-labels>

skip float

The number of labels to skip. By default no labels are skipped.

Example

<kendo:stockChart-navigator-categoryAxis-labels skip="skip">
</kendo:stockChart-navigator-categoryAxis-labels>

step float

The label rendering step - render every n-th label. By default every label is rendered.

Example

<kendo:stockChart-navigator-categoryAxis-labels step="step">
</kendo:stockChart-navigator-categoryAxis-labels>

template java.lang.String

The template which renders the labels.The fields which can be used in the template are: value - the category value.

Example

<kendo:stockChart-navigator-categoryAxis-labels template="template">
</kendo:stockChart-navigator-categoryAxis-labels>

visible boolean

If set to true the chart will display the category axis labels. By default the category axis labels are visible.

Example

<kendo:stockChart-navigator-categoryAxis-labels visible="visible">
</kendo:stockChart-navigator-categoryAxis-labels>

Configuration JSP Tags

kendo:stockChart-navigator-categoryAxis-labels-border

The border of the labels.

More documentation is available at kendo:stockChart-navigator-categoryAxis-labels-border.

Example

<kendo:stockChart-navigator-categoryAxis-labels>
    <kendo:stockChart-navigator-categoryAxis-labels-border></kendo:stockChart-navigator-categoryAxis-labels-border>
</kendo:stockChart-navigator-categoryAxis-labels>

kendo:stockChart-navigator-categoryAxis-labels-dateFormats

The format used to display the labels when the categories are dates. Uses kendo.format. Contains one placeholder ("{0}") which represents the category value.

More documentation is available at kendo:stockChart-navigator-categoryAxis-labels-dateFormats.

Example

<kendo:stockChart-navigator-categoryAxis-labels>
    <kendo:stockChart-navigator-categoryAxis-labels-dateFormats></kendo:stockChart-navigator-categoryAxis-labels-dateFormats>
</kendo:stockChart-navigator-categoryAxis-labels>

kendo:stockChart-navigator-categoryAxis-labels-margin

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

More documentation is available at kendo:stockChart-navigator-categoryAxis-labels-margin.

Example

<kendo:stockChart-navigator-categoryAxis-labels>
    <kendo:stockChart-navigator-categoryAxis-labels-margin></kendo:stockChart-navigator-categoryAxis-labels-margin>
</kendo:stockChart-navigator-categoryAxis-labels>

kendo:stockChart-navigator-categoryAxis-labels-padding

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

More documentation is available at kendo:stockChart-navigator-categoryAxis-labels-padding.

Example

<kendo:stockChart-navigator-categoryAxis-labels>
    <kendo:stockChart-navigator-categoryAxis-labels-padding></kendo:stockChart-navigator-categoryAxis-labels-padding>
</kendo:stockChart-navigator-categoryAxis-labels>

Event Attributes

template String

The template which renders the labels.The fields which can be used in the template are: value - the category value.

Example

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

Event Tags

kendo:stockChart-navigator-categoryAxis-labels-template

The template which renders the labels.The fields which can be used in the template are: value - the category value.

Example

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