igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
50 lines (49 loc) • 2.09 kB
TypeScript
import * as React from 'react';
import { IgrPropertyUpdatedEventArgs } from "igniteui-react-core";
import { ColorScale } from "./ColorScale";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Base class for classes which provide colors corresponding to numeric values within a known list of numeric values.
*/
export declare abstract class IgrColorScale<P extends IIgrColorScaleProps = IIgrColorScaleProps> extends React.Component<P, {}> {
protected createImplementation(): ColorScale;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): ColorScale; /**
* @hidden
*/
static _createFromInternal(internal: any): IgrColorScale;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor(props: P);
componentDidMount(): void;
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
render(): any;
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: IgrColorScale, e: IgrPropertyUpdatedEventArgs) => void;
set propertyUpdated(ev: (s: IgrColorScale, e: IgrPropertyUpdatedEventArgs) => void);
}
export interface IIgrColorScaleProps {
children?: React.ReactNode;
/**
* Event raised when a property (including "effective" and non-dependency property) value changes.
*/
propertyUpdated?: (s: IgrColorScale, e: IgrPropertyUpdatedEventArgs) => void;
}