@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
26 lines (25 loc) • 1 kB
TypeScript
import { EGeoLevel } from '../../../../../constants';
import MapBaseStyleService, { IMapChartStyle } from './base';
export interface IMapGeoLevelProps extends IMapChartStyle {
geoLevel: EGeoLevel;
}
export default abstract class MapGeoLevelStyleService extends MapBaseStyleService {
geoLevel: EGeoLevel;
getOptions(): {
geoLevel: EGeoLevel;
legend: import("../..").IOneDLegend;
showCalculable: boolean;
showVisualMap: boolean;
dataDetailsValue: import("../../../../../constants").StatusSwitch;
labelLayoutType: boolean;
labelValueType: import("../../../../../constants").ELabelValueType[];
chartType: import("../../../../../constants").ChartType;
currentBuckets: string[];
currentMetrics: string[];
unit: string[];
precision: number;
displayColors?: import("../base").IColor[] | undefined;
};
setGeoLevel(geoLevel: EGeoLevel): void;
constructor(chart: IMapGeoLevelProps);
}