UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

62 lines (61 loc) 2.36 kB
import { IgcDataAnnotationShapeLayerComponent } from "./igc-data-annotation-shape-layer-component"; import { DataAnnotationRangeLayer } from "./DataAnnotationRangeLayer"; /** * Represents a base of annotation layers that render from start/end range */ export declare abstract class IgcDataAnnotationRangeLayerComponent extends IgcDataAnnotationShapeLayerComponent { /** * @hidden */ get i(): DataAnnotationRangeLayer; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcDataAnnotationRangeLayerComponent; static get observedAttributes(): string[]; /** * Gets or sets the text color used for displaying the start annotation label. */ get startLabelTextColor(): string; set startLabelTextColor(v: string); /** * Gets or sets the background used for displaying the start annotation label. */ get startLabelBackground(): string; set startLabelBackground(v: string); /** * Gets or sets the border color used for displaying Start annotation label. */ get startLabelBorderColor(): string; set startLabelBorderColor(v: string); /** * Gets or sets the text color used for displaying the end annotation label. */ get endLabelTextColor(): string; set endLabelTextColor(v: string); /** * Gets or sets the background used for displaying the end annotation label. */ get endLabelBackground(): string; set endLabelBackground(v: string); /** * Gets or sets the border used for displaying the end annotation label. */ get endLabelBorderColor(): string; set endLabelBorderColor(v: string); /** * Gets or sets the text color used for displaying the center annotation label. */ get centerLabelTextColor(): string; set centerLabelTextColor(v: string); /** * Gets or sets the background used for displaying the center annotation label. */ get centerLabelBackground(): string; set centerLabelBackground(v: string); /** * Gets or sets the border color used for displaying the center annotation label. */ get centerLabelBorderColor(): string; set centerLabelBorderColor(v: string); }