/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The configuration for the scale ranges. */ export interface Range { /** * The start position of the range. */ from?: number; /** * The end position of the range. */ to?: number; /** * The range opacity. */ opacity?: number; /** * The color of the range. Accepts valid CSS color strings, including hex and rgb. */ color?: string; }