@syncfusion/ej2-react-charts
Version:
Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for React
23 lines (22 loc) • 798 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { RangeColorSettingModel } from '@syncfusion/ej2-charts';
/**
* `RangeColorSetting` directive represent range color mapping of the react Chart.
* It must be contained in a Chart component(`ChartComponent`).
* ```tsx
* <ChartComponent>
* <RangeColorSettingsDirective>
* <RangeColorSettingDirective></RangeColorSettingDirective>
* </RangeColorSettingsDirective>
* </ChartComponent>
* ```
*/
export declare class RangeColorSettingDirective extends ComplexBase<RangeColorSettingModel & {
children?: React.ReactNode;
}, RangeColorSettingModel> {
static moduleName: string;
}
export declare class RangeColorSettingsDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}