@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
31 lines (30 loc) • 1.43 kB
TypeScript
import { IChartDataset } from '@qn-pandora/app-sdk';
import SearchOneDChartStyleService from '../one-d';
import BubbleWorldChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/map/bubble/bubbleWorld';
import { ISearchChartStyleService } from '../base';
export default class SearchBubbleWorldChartStyleService extends BubbleWorldChartStyleService implements ISearchChartStyleService {
searchOneDChartStyleService: SearchOneDChartStyleService;
get option(): {
maxSize: number;
minSize: number;
minDiameter: number | undefined;
maxDiameter: number | undefined;
threshold: number;
sizeType: import("../../../../constants").ESizeType;
mapBubbleColor: string | undefined;
geoLevel: import("../../../../constants").EGeoLevel;
legend: import("../../../..").IOneDLegend;
showCalculable: boolean;
showVisualMap: boolean;
dataDetailsValue: import("../../../../constants").StatusSwitch;
labelLayoutType: boolean;
labelValueType: import("../../../../constants").ELabelValueType[];
chartType: import("../../../..").ChartType;
currentBuckets: string[];
currentMetrics: string[];
unit: string[];
precision: number;
displayColors?: import("../../../..").IColor[] | undefined;
};
datasetReaction(dataset: IChartDataset): void;
}