UNPKG

@progress/kendo-angular-charts

Version:

Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.

35 lines (34 loc) 1.16 kB
/**----------------------------------------------------------------------------------------- * 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; }