@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.23 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies 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"`—Positions the labels in circle around the Chart.
* - `"column"`—Positions the labels in columns to the left and right of the Chart.
*
* The supported values for `"funnel"` and `"pyramid"` are:
*
* - `"center"`—Positions the labels in the center over the segment.
* - `"right"`—Positions the labels on the right side of the Chart and, if there is enough space, do not overlap the segments.
* - `"left"`—Positions the labels 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';