SeriesDefaultsNotesLabelComponent
The label of the notes.
Selector
kendo-chart-series-defaults-notes-label
Inputs
background
string
The background color of the label. Accepts a valid CSS color string, including hex and rgb.
border
The border of the label.
color
string
The text color of the label. Accepts a valid CSS color string, including hex and rgb.
content
(e: SeriesNoteContentArgs) => string
The function which returns the label content.
You can split the text into multiple lines by using line feed characters ("\n"
).
font
string
The font style of the label.
format
string
The format for displaying the notes label. Uses the format
method of IntlService.
Contains one placeholder ("{0}"
) which represents the axis value.
position
The position of the labels.
The available options are:
"inside"
—The label is positioned inside the icon."outside"
—The label is positioned outside the icon.
rotation
number
The rotation angle of the label. By default, the label is not rotated.
visible
boolean
If set to true
, the Chart displays the seriesDefaults
notes label.
By default, the seriesDefaults
notes label is visible.
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.