@syncfusion/ej2-react-maps
Version:
The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for React
28 lines (27 loc) • 831 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { ColorMappingSettingsModel } from '@syncfusion/ej2-maps';
/**
* Represents the directive to define the bubble color mapping in the maps.
* ```tsx
* <MapsComponent>
* <LayersDirective>
* <LayerDirective>
* <BubblesDirective>
* <ColorMappingsDirective>
* <ColorMappingDirective></ColorMappingDirective>
* </ColorMappingsDirective>
* </BubblesDirective>
* </LayerDirective>
* </LayersDirective>
* </MapsComponent>
* ```
*/
export declare class ColorMappingDirective extends ComplexBase<ColorMappingSettingsModel & {
children?: React.ReactNode;
}, ColorMappingSettingsModel> {
static moduleName: string;
}
export declare class ColorMappingsDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}