@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
21 lines (20 loc) • 1.25 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The alignment of the label when [`series.type`](slug:api_charts_series#toc-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 segment.
* - `"right"`—The labels are positioned on the right side of the Chart and, if there is enough space, do not overlap the segments.
* - `"left"`—The labels are positioned on the left side of the Chart and, if there is enough space, do not overlap the segments.
*
*/
export type SeriesLabelsAlignment = 'circle' | 'column' | 'center' | 'right' | 'left';