@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
11 lines (10 loc) • 819 B
TypeScript
import { IColorPalette } from "@gooddata/gooddata-js";
import { AFM, Execution } from "@gooddata/typings";
import { IColorAssignment, IColorMapping } from "../../../../interfaces/Config";
import { ICreateColorAssignmentReturnValue } from "../colorFactory";
import PointsChartColorStrategy from "./pointsChart";
declare class BubbleChartColorStrategy extends PointsChartColorStrategy {
protected createColorAssignment(colorPalette: IColorPalette, colorMapping: IColorMapping[], viewByAttribute: any, stackByAttribute: any, executionResponse: Execution.IExecutionResponse, afm: AFM.IAfm): ICreateColorAssignmentReturnValue;
protected createPalette(colorPalette: IColorPalette, colorAssignment: IColorAssignment[], viewByAttribute: any, stackByAttribute: any): string[];
}
export default BubbleChartColorStrategy;