/**----------------------------------------------------------------------------------------- * Copyright © 2026 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%'; }