import { MapVisualizationSettingsBase } from './MapVisualizationSettingsBase'; import { MapLabelVisibility } from '../Enums/MapLabelVisibility'; import { MapLabelStyle } from '../Enums/MapLabelStyle'; import { MapDataLocale } from '../Enums/MapDataLocale'; import { MapColorStyle } from '../Enums/MapColorStyle'; export declare class ChoroplethVisualizationSettings extends MapVisualizationSettingsBase { constructor(); /** * Gets or sets how the map color will be applied to regions that contain data. */ colorStyle: MapColorStyle; /** * Gets or sets whether labels will be displayed on the regions. */ labelVisibility: MapLabelVisibility; /** * Gets or sets whether the labels are displayed as abbrevaited geographical names, or as values. */ labelStyle: MapLabelStyle; /** * Gets or sets the language locale to use for the map. */ dataLocale: MapDataLocale; }