UNPKG

igniteui-webcomponents-charts

Version:

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

45 lines (44 loc) 1.47 kB
import { IgcBrushScaleComponent } from "./igc-brush-scale-component"; import { ValueBrushScale } from "./ValueBrushScale"; /** * Represents a brush scale that uses value-based brush selection. */ export declare class IgcValueBrushScaleComponent extends IgcBrushScaleComponent { protected createImplementation(): ValueBrushScale; /** * @hidden */ get i(): ValueBrushScale; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcValueBrushScaleComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the minimum value for this scale. */ get minimumValue(): number; set minimumValue(v: number); /** * Gets or sets the maximum value for this scale. */ get maximumValue(): number; set maximumValue(v: number); /** * Gets or sets whether the scale is logarithmic. */ get isLogarithmic(): boolean; set isLogarithmic(v: boolean); /** * Gets or sets the logarithm base for this scale. */ get logarithmBase(): number; set logarithmBase(v: number); /** * Checks if the value brush scale is ready for usage in the chart */ get isReady(): boolean; }