/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PlotBandLabel } from './plot-band-label.interface';
/**
 * Specifies a plot band.
 */
export interface PlotBand {
    /**
     * Specifies the color of the plot band.
     */
    color?: string;
    /**
     * Specifies the start position of the plot band in axis units.
     */
    from?: number | Date;
    /**
     * Specifies the opacity of the plot band.
     */
    opacity?: number;
    /**
     * Specifies the end position of the plot band in axis units.
     */
    to?: number | Date;
    /**
     * Specifies the label configuration of the plot band.
     *
     * To display a label, set the text option.
     *
     * See [Plot Bands - Labels](https://www.telerik.com/kendo-angular-ui/components/charts/elements/plot-bands#labels) for sample usage.
     */
    label?: PlotBandLabel;
}
