New to Kendo UI for Angular? Start a free 30-day trial

YAxisLabelsComponent

The axis labels configuration.

Selector

kendo-chart-y-axis-item-labels

Inputs

NameTypeDefaultDescription

background

string

The background color of the labels. Accepts a valid CSS color string, including HEX and RGB.

border

Border

The border of the labels.

color

string

The text color of the labels. Accepts a valid CSS color string, including HEX and RGB.

content

(e: AxisLabelContentArgs) => string

The function which returns the label content. You can split the text into multiple lines by using the line feed characters ("\n").

culture

string

The culture to use when formatting date values. The specified culture must be loaded as demonstrated in the Internationalization Overview.

dateFormats

DateFormats

The format for displaying the labels when the X values are dates. Uses the format method of IntlService. Contains one placeholder ("{0}") which represents the category value. The Chart selects the appropriate format for the current yAxis.baseUnit. Setting the categoryAxis.labels.format option overrides the date formats.

font

string

'12px sans-serif'

The font style of the labels.

format

string

'{0}'

The format for displaying the labels. Uses the format method of IntlService. Contains one placeholder ("{0}") which represents the category value.

margin

number | Margin

0

The margin of the labels. A numeric value sets all margins.

mirror

boolean

false

If set to true, the Chart mirrors the axis labels and ticks. If the labels are normally on the left side of the axis, the mirroring of the axis renders them to the right.

padding

number | Padding

0

The padding of the labels. A numeric value sets all paddings.

position

AxisLabelsPosition

'onAxis'

The position of the axis labels. By default, labels are positioned next to the axis.

rotation

number | LabelRotation | "auto"

0

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

skip

number

0

The number of labels to skip.

step

number

1

The label rendering step—renders every nth label. By default, every label is rendered.

visible

boolean

true

If set to true, the Chart displays the Y-axis labels. By default, the Y-axis labels are visible.

visual

(e: AxisLabelVisualArgs) => Element

A function that can be used to create a custom visual for the labels.

Methods

notifyChanges

Updates the component fields with the specified values and refreshes the Chart.

Use this method when the configuration values cannot be set through the template.

item.notifyChanges({ visible: true });
Parameters

changes

any

An object containing the updated input fields.

In this article

Not finding the help you need?