New to KendoReactStart a free 30-day trial

Data Binding

The Chart supports the binding of its data series and category axis to arrays and Datasets of objects.

Binding Series

This section provides information on the binding methods for the Chart series in general. For more information on how to configure each Chart series, refer to the articles on the Chart series types.

Arrays of Values

The simplest form of data binding involves the supplying of each series with an array of values.

Change Theme
Theme
Loading ...

Arrays of Arrays

Some series require more than one value per point—for example, the Scatter (x and y) and Bubble (x, y, and size) series.

The following example demonstrates how to bind a Bubble series to an array of arrays.

Change Theme
Theme
Loading ...

Objects

The Chart allows you to bind it to objects by specifying the fields you want to use—for the value, category, X value, Y value, and so on. This is the most commonly used type of binding as it allows you to use your model with little or no modification.

The following example demonstrates how to configure a Column series with bound category text and a value.

Change Theme
Theme
Loading ...

Groups of Objects

It is often convenient to plot a separate series for each unique category in a data set. For example, a Line Chart for each product in a sales report. Typically, the exact number of categories is not known in advance.

The Data Query package offers a convenient groupBy method that you can use to split the records into groups. It takes the data and a GroupDescriptor. The output is a GroupResult that contains the groups and their items.

The following example demonstrates how to plot a Line Chart for each service.

Change Theme
Theme
Loading ...

Binding Categories

The category axis of Categorical Charts is a data-bound component just like the series.

It supports the following basic approaches for providing the category list:

When the Chart is bound to dates, the category axis provides dedicated functions. For more information, refer to the section on displaying time series.

Arrays of Labels

The simplest form of data binding involves the supplying of an array of labels for the categories to the axis. The list will be displayed as is, without any modifications. Series data points are positioned in sequence along the axis.

  • The order of the categories has no relation to the order of the series data points.
  • The number of the categories has to be equal to the number of the data points in the series.
  • To preserve the order, the missing values in the series have to be represented by null.
Change Theme
Theme
Loading ...

Category Fields

The previous approach is error-prone because of the necessity for you to maintain a category and a particular data order. To avoid this requirement, bind the categories to the same model object as the series. In this way, the series points and categories will always be matched automatically.

Change Theme
Theme
Loading ...

Handling Duplicate Categories

Binding to a category field makes it possible for two data points to have the same category—the following example demonstrates two values that are declared for 'Chai'.

Change Theme
Theme
Loading ...

In this case, the Chart takes the data points from the source data set and produces a new point by using an aggregate function.

By default, the aggregate function returns the maximum value of the value fields. If the category contains only one point, it returns it without modification. Other aggregates, such as count and sum, produce their own value even if the category contains just one data point.

Change Theme
Theme
Loading ...

It is also possible to define your own aggregate functions, as demonstrated in the following example.

When the category binding is in use, the aggregate function is executed for all unique categories.

Change Theme
Theme
Loading ...

No Data Overlay

Use the ChartNoDataOverlay component when no series data is available. The Chart will display a No Data overlay with a message "No data available.". The message can be localized and is part of the Charts Globalization - Messages.

Change Theme
Theme
Loading ...

For further customization, add the custom content as children of the ChartNoDataOverlay component.

Change Theme
Theme
Loading ...