UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

27 lines (26 loc) 1.35 kB
import { IChartDataset } from '@qn-pandora/app-sdk'; import CapsuleBarChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/capsule-bar'; import { ISearchChartStyleService } from '../base'; import SearchOneDChartStyleService from '../one-d'; export default class SearchCapsuleBarChartStyleService extends CapsuleBarChartStyleService implements ISearchChartStyleService { searchOneDChartStyleService: SearchOneDChartStyleService; get option(): { valueTypes: import("../../../../constants/capsule-bar-style").ValueType[]; subtotalType: import("../../../../constants/capsule-bar-style").SubtotalType; constantValue: number; barColor: string; barShape: import("../../../../constants/capsule-bar-style").BarShape; dataFont: import("../../../..").ITitleDataFont; labelFont: import("../../../..").ITitleDataFont; labelPosition: import("../../../../constants/capsule-bar-style").LabelPosition; labelWidth: number; valueWidth: number; chartType: import("../../../..").ChartType; currentBuckets: string[]; currentMetrics: string[]; unit: string[]; precision: number; displayColors?: import("../../../..").IColor[] | undefined; }; datasetReaction(dataset: IChartDataset): void; }