ChartNavigatorSeriesLabelsProps
Represents the props of the KendoReact ChartNavigatorSeriesLabels component.
Definition
Package:@progress/kendo-react-charts
Properties
align?
"center" | "left" | "right" | "column" | "circle"
The alignment of the label when series.type is set to "donut", "funnel", "pyramid" or "pie".
The supported values for "donut" and "pie" are:
"circle"—The labels are positioned in circle around the Chart."column"—The labels are positioned in columns to the left and right of the Chart.
The supported values for "funnel" and "pyramid" are:
"center"—The labels are positioned in the center over the funnel segment."right"—The labels are positioned on the right side of the Chart and, if there is enough space, do not overlap the funnel segments."left"—The labels are positioned on the left side of the Chart and, if there is enough space, do not overlap the funnel segments.
background?
string
The background color of the labels. Accepts a valid CSS color string, including hex and rgb.
children?
ReactNode
React child components that can be used to configure nested chart series label components.
Supported child components include label configuration components for specialized chart types.
color?
string
The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
The function which returns the Chart series label content. You can split the text into multiple lines by using line feed characters ("\n").
The fields available in the function argument are:
category—The category name. Available for the Area, Bar, Column, Bubble, Donut, Line, Pie, and Waterfall 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 only for the Donut, Pie, and 100% stacked charts.series—The data series.stackValue—The cumulative point value on the stack. Available only for the stackable 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.
string
distance?
number
The distance between the labels when series.type is set to "donut" or "pie".
font?
string
The font style of the labels.
from?
SeriesLabelsFrom
The from label configuration of the Chart series. The Chart displays the series from labels when either the series.labels.visible or the series.labels.from.visible option is set to true.
The padding of the labels. A numeric value sets all paddings. Bar and Column series always apply full padding and ignore this setting.
The position of the labels.
to?
SeriesLabelsTo
The to label configuration of the Chart series. The Chart displays the series to labels when either the series.labels.visible or the series.labels.to.visible option is set to true.
visible?
boolean
If set to true, the Chart displays the series labels. By default, the Chart series labels are not displayed.
A function that can be used to create a custom visual for the labels.
The available argument fields are:
text—The label text.rect—The geometryRectthat defines where the visual has to be rendered.options—The label options.createVisual—A function that can be used to get the default visual.sender—The Chart instance (might beundefined).