@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) • 921 B
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 configuration for Stacked series.
*/
export interface SeriesStack {
/**
* Specifies the optional stack group name.
* Use this option for the Bar and Column series.
*/
group?: string;
/**
* Specifies the type of stack to plot.
*
* Use `normal` to sum up all the points within the category or group to determine the stack value. Use `100%` to always set the stack value to 100% (1.00), with individual points represented as percentages within the category or group.
*/
type?: 'normal' | '100%';
}