ChartSeriesDefaultsLabelsFromProps
Interface
Represents the props of the KendoReact ChartSeriesDefaultsLabelsFrom component.
Definition
Package:@progress/kendo-react-charts
Properties
background?
string
The background color of the from labels. Accepts a valid CSS color string, including hex and rgb.
color?
string
The text color of the from labels. Accepts a valid CSS color string, including hex and rgb.
The function which returns the from label content of the Chart series. You can split the text into multiple lines by using 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, Pyramid, 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, Pyramid and Pie series.series—The data series.value—The point value. Can be a number or object which contain 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.
Parameters:eanyReturns:
string
font?
string
The font style of the from labels.
visible?
boolean
If set to true, the Chart displays the series from labels. By default, the Chart series from labels are not displayed.