igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
48 lines (47 loc) • 2.08 kB
TypeScript
import { IgcHTMLElement } from "igniteui-webcomponents-core";
import { IgcPropertyUpdatedEventArgs } from "igniteui-webcomponents-core";
import { ColorScale } from "./ColorScale";
/**
* Base class for classes which provide colors corresponding to numeric values within a known list of numeric values.
*/
export declare abstract class IgcColorScaleComponent extends IgcHTMLElement {
protected createImplementation(): ColorScale;
protected _implementation: any;
/**
* @hidden
*/
get i(): ColorScale; /**
* @hidden
*/
static _createFromInternal(internal: any): IgcColorScaleComponent;
private onImplementationCreated;
constructor();
private _settingAttributes;
protected _attached: boolean;
private _queuedSetAttributes;
protected _enqueueSetAttribute(attrName: string, attrValue: string): void;
protected _flushQueuedAttributes(): void;
protected _a(attrName: string, attrValue: any): void;
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcColorScaleComponent;
static get observedAttributes(): string[];
private _updatingFromAttribute;
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
findByName(name: string): any;
protected __p: string;
protected _hasUserValues: Set<string>;
protected get hasUserValues(): Set<string>;
protected __m(propertyName: string): void;
protected _stylingContainer: any;
protected _stylingParent: any;
protected _inStyling: boolean;
protected _styling(container: any, component: any, parent?: any): void;
private _propertyUpdated;
private _propertyUpdated_wrapped;
/**
* Event raised when a property (including "effective" and non-dependency property) value changes.
*/
get propertyUpdated(): (s: IgcColorScaleComponent, e: IgcPropertyUpdatedEventArgs) => void;
set propertyUpdated(ev: (s: IgcColorScaleComponent, e: IgcPropertyUpdatedEventArgs) => void);
}