@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.
22 lines (21 loc) • 2.27 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 position of the series labels.
*
* - `"above"`—Positions the label at the top of the marker. Applicable for series that render points, including the Bubble series.
* - `"below"`—Positions the label at the bottom of the marker. Applicable for series that render points, including the Bubble series.
* - `"center"`—Positions the label at the point center. Applicable for the Bar, Column, Donut, Pie, Funnel, Pyramid, RadarColumn, and Waterfall series.
* - `"insideBase"`—Positions the label inside, near the base of the bar. Applicable for the Bar, Column, and Waterfall series.
* - `"insideEnd"`—Positions the label inside, near the end of the point. Applicable for the Bar, Column, Donut, Pie, RadarColumn, and Waterfall series.
* - `"left"`—Positions the label to the left of the marker. Applicable for series that render points, including the Bubble series.
* - `"outsideEnd"`—Positions the label outside, near the end of the point. Applicable for the Bar, Column, Donut, Pie, RadarColumn, and Waterfall series. Not applicable for stacked series.
* - `"right"`—Positions the label to the right of the marker. Applicable for series that render points, including the Bubble series.
* - `"top"`—Positions the label at the top of the segment. Applicable for the Funnel and Pyramid series.
* - `"bottom"`—Positions the label at the bottom of the segment. Applicable for the Funnel and Pyramid series.
* - `"auto"`—Positions the from and to labels at the top or bottom (for the RangeArea series), or to the left or right (for the VerticalRangeArea series), so that they are outside the filled area. Applicable for the RangeArea and VerticalRangeArea series.
*
*/
export type SeriesLabelsPosition = 'auto' | 'above' | 'below' | 'center' | 'insideBase' | 'insideEnd' | 'left' | 'outsideEnd' | 'right' | 'top' | 'bottom';