/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The predefined label types.
 *
 * The supported values are:
 * * `value`&mdash;Shows the current display value trimmed to the third decimal.
 * * `percent`&mdash;Shows the calculated percentage value based on the current display value and the range defined by the `min` and `max` options.
 */
export type LabelType = 'value' | 'percent';
