UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

31 lines (30 loc) 1.43 kB
import { IChartDataset } from '@qn-pandora/app-sdk'; import BubbleChinaChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/map/bubble/bubbleChina'; import { ISearchChartStyleService } from '../base'; import SearchOneDChartStyleService from '../one-d'; export default class SearchBubbleChinaChartStyleService extends BubbleChinaChartStyleService 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; }