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

ChartSeriesDefaultsLabelsFromProps

Represents the props of the Kendo UI for Vue ChartSeriesDefaultsLabelsFrom component.

NameTypeDefaultDescription

background?

string

The background color of the from labels. Accepts a valid CSS color string, including hex and rgb.

border?

Border

The border of the from labels.

color?

string

The text color of the from 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 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 be null.
  • 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.

font?

string

The font style of the from labels.

format?

string

The format of the from labels. Uses the format of IntlService.

margin?

number | Margin

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

padding?

number | Padding

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

visible?

boolean

If set to true, the Chart displays the series from labels. By default, the Chart series from labels are not displayed.