@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
32 lines (31 loc) • 1.88 kB
TypeScript
import { IChartDataset } from '@qn-pandora/app-sdk';
import StackAreaChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/line/stack-area';
import SearchTwoDChartStyleService from '../two-d';
import { ISearchChartStyleService } from '../base';
export default class SearchStackAreaChartStyleService extends StackAreaChartStyleService implements ISearchChartStyleService {
searchTwoDChartStyleService: SearchTwoDChartStyleService;
get option(): {
bandList: import("../../../../constants/line-style").IBand[];
markAreas: import("../../../../constants/line-style").IMarkAreas[];
emphasizeAreas: import("../../../../constants/line-style").IEmphasizeAreas[];
tagColors: import("../../../../constants/line-style").ITagColor[];
smoothLine: boolean;
point: import("../../../..").IPoint;
markPointType: import("../../../../constants").ILineMarkPointType;
chartType: import("../../../..").ChartType;
mainAxis: import("../../../..").IMainAxis;
crossAxis1: import("../../../..").ICrossAxis;
crossAxis2: import("../../../..").ICrossAxis2;
legend: import("../../../..").ITwoDLegend;
colors: import("../../../..").IColors;
colorMode: import("@qn-pandora/pandora-app-component").EColorMode;
compare: import("../../../../base-pandora-visualization/services/chart-style/components/compare").ICompare;
baseLine: import("@qn-pandora/pandora-app-component").IBaseLine<any>[];
showToolBox: boolean;
tooltipType: import("../../../../constants").ETooltipType;
tooltipAppendToBody?: boolean | undefined;
markLine?: import("../../../../constants").IMarkLineType | undefined;
displayColors?: import("../../../..").IColor[] | undefined;
};
datasetReaction(dataset: IChartDataset): void;
}