/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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;Represents the current display value trimmed to the third decimal.
 * * `percentage`&mdash;Represents 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';
