New to Kendo UI for AngularStart a free 30-day trial

Legend

Updated on Dec 10, 2025

The Chart legend displays the name of the configured data series and provides visual indicators for each series. You can customize the legend's position, appearance, markers, and behavior to match your application's design and functionality requirements.

Basic Configuration

To customize the legend, use the kendo-chart-legend configuration component.

By default, the name of the series is displayed in the legend, but you must consider the following:

  • Series without a specified name or a defined labels.content function that returns a non-empty value will not display legend items.
  • To render a legend item for the Pie, Donut, Funnel and Pyramid series, provide the items with a category field.

The following example demonstrates how to configure the position and orientation of the Chart legend.

Change Theme
Theme
Loading ...

Hiding the Legend

If you set the series names, the Angular Chart displays a default legend. You can hide the legend by using its visible property.

Change Theme
Theme
Loading ...

Customizing the Position

You can remove the legend from the flow and absolutely position it by setting the position to custom and configuring the offsetX and offsetY options.

Change Theme
Theme
Loading ...

Adding a Title

The Chart legend can be configured to hold a title with customizable layout and content. To define a title, provide a LegendTitle object to the legend configuration.

Change Theme
Theme
Loading ...

Legend Items

The legend item types and settings are derived from the series configuration. For additional configuration, use the series legendItem property.

Item Types

Legend items support different visual representations based on the series type. Each series automatically renders an appropriate legend item that matches its visual appearance in the chart. You can override the default behavior using the legendItem property to customize the type and appearance of individual legend items.

The following example shows the different legend item types:

Change Theme
Theme
Loading ...

Custom Item Shapes

You can create custom shapes for the legend items using the Drawing API. Pass a custom function to the visual property of the LegendItemComponent. The following example demonstrates how a custom label can be drawn in the shape of its corresponding series.

Change Theme
Theme
Loading ...

Legend Markers

Legend markers are the visual indicators that appear next to each series name in the legend. You can customize their appearance using the markers property of the kendo-chart-legend component.

The following example demonstrates how to configure legend marker properties including shape, size, and visibility.

Change Theme
Theme
Loading ...

Marker Properties

Control the appearance of legend markers through the following properties:

  • type—Specifies the shape of the legend markers. Available shapes include circle, square, triangle, cross, rect, and roundedRect. The default value is circle.
  • width—Sets the width of the markers in pixels. The default value is 15.
  • height—Sets the height of the markers in pixels. The default value is 3.
  • visible—Controls whether the markers are displayed. By default, markers are visible.
  • visual—Specifies a function for creating custom marker shapes using the Drawing API.

Custom Marker Shapes

You can create custom legend marker shapes by using the visual function. This function receives a MarkersVisualArgs parameter and returns a group of Drawing primitives that represent the marker. The visual callback provides complete control over the marker appearance, enabling you to create unique shapes that match your design requirements or brand identity.

The following example demonstrates how to render legend markers with custom shapes using the visual callback.

Change Theme
Theme
Loading ...

Interactive Behavior

The Chart legend supports user interactions that control series visibility. By default, clicking a legend item toggles the visibility of its corresponding series. You can customize or disable this behavior through event handling.

Clicking Legend Items

Clicking the legend items toggles the visibility of the clicked series. To disable or customize this behavior, cancel the legendItemClick event.

The following example demonstrates how to implement the toggle feature by binding the series visibility to a controller field.

Change Theme
Theme
Loading ...

Inline Series

If the Angular Chart series are declared as plain objects, the default click action is not available.

The following example demonstrates how to toggle the series visibility by replacing the series definition. If you remove the legendItemClick handler, the series visibility will not change when the legend item is clicked.

Change Theme
Theme
Loading ...

Support and Learning Resources

Additional Resources