igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
43 lines (42 loc) • 1.8 kB
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import { IgxPropertyUpdatedEventArgs } from "igniteui-angular-core";
import { ColorScale } from "./ColorScale";
import * as i0 from "@angular/core";
/**
* Base class for classes which provide colors corresponding to numeric values within a known list of numeric values.
*/
export declare abstract class IgxColorScaleComponent implements OnInit {
protected createImplementation(): ColorScale;
ngOnInit(): void;
protected _implementation: any;
/**
* @hidden
*/
get i(): ColorScale; /**
* @hidden
*/
static _createFromInternal(internal: any): IgxColorScaleComponent;
private onImplementationCreated;
constructor();
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;
/**
* Event raised when a property (including "effective" and non-dependency property) value changes.
*/
get propertyUpdated(): EventEmitter<{
sender: any;
args: IgxPropertyUpdatedEventArgs;
}>;
protected _zoneRunner: (act: () => void) => void;
protected _runInZone(act: () => void): void;
static ɵfac: i0.ɵɵFactoryDeclaration<IgxColorScaleComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<IgxColorScaleComponent, "ng-component", never, {}, { "propertyUpdated": "propertyUpdated"; }, never, never>;
}