UNPKG

@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.31 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Configures the position of the series labels. * * - `"above"`—The label is positioned at the top of the marker. Applicable for series that render points, including the Bubble series. * - `"below"`—The label is positioned at the bottom of the marker. Applicable for series that render points, including the Bubble series. * - `"center"`—The label is positioned at the point center. Applicable for the Bar, Column, Donut, Pie, Funnel, Pyramid, RadarColumn, and Waterfall series. * - `"insideBase"`—The label is positioned inside, near the base of the bar. Applicable for the Bar, Column, and Waterfall series. * - `"insideEnd"`—The label is positioned inside, near the end of the point. Applicable for the Bar, Column, Donut, Pie, RadarColumn, and Waterfall series. * - `"left"`—The label is positioned to the left of the marker. Applicable for series that render points, including the Bubble series. * - `"outsideEnd"`—The label is positioned outside, near the end of the point. Applicable for the Bar, Column, Donut, Pie, RadarColumn, and Waterfall series. Not applicable for stacked series. * - `"right"`—The label is positioned to the right of the marker. Applicable for series that render points, including the Bubble series. * - `"top"`—The label is positioned at the top of the segment. Applicable for the Funnel and Pyramid series. * - `"bottom"`—The label is positioned at the bottom of the segment. Applicable for the Funnel and Pyramid series. * - `"auto"`—The from and to labels are positioned 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';