SeriesDefaultsLabelsToComponent
The to
label configuration of the Chart series.
Selector
kendo-chart-series-defaults-labels-to
Inputs
background
string
The background color of to
lables. Accepts a valid CSS color string, including hex and rgb.
border
The border of to
labels.
color
string
The text color of to
labels. Accepts a valid CSS color string, including hex and rgb.
content
(e: any) => string
The function which returns the from
label content of the Chart series.
You can split the text into multiple lines by using the line feed characters ("\n"
).
The available fields in the function argument are:
category
—The category name. Available for the Area, Bar, Column, Bubble, Donut, Funnel, Line, and Pie series.dataItem
—The original data item used to construct the point. If binding to an array, it will benull
.percentage
—The point value represented as a percentage value. Available for the Donut, Funnel, and Pie series.series
—The data series.value
—The point value. Can be a number or object containing each bound field.runningTotal
—The sum of point values since the last"runningTotal"
summary point. Available for the Waterfall series.total
—The sum of all previous series values. Available for the Waterfall series.
font
string
The font style of the to
labels.
format
string
The format of the to
labels. Uses the format
method of IntlService.
margin
Margin | number
The margin of the to
labels. A numeric value sets all margins.
padding
Padding | number
The padding of the to
labels. A numeric value sets all paddings.
visible
boolean
If set to true
, the Chart displays the to
labels of the series.
By default, the to
labels of the Chart series are not displayed.
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.