• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBoxupdated
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

ChartSeriesDefaultsLabelsToProps

Represents the props of the KendoReact ChartSeriesDefaultsLabelsTo component.

NameTypeDefaultDescription

background?

string

The background color of to lables. Accepts a valid CSS color string, including hex and rgb.

border?

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, 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 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?

number | Margin

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

padding?

number | Padding

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.