package.dist.components.graphs.bubble.d.ts Maven / Gradle / Ivy
import { Selection } from 'd3';
import { Scatter } from './scatter';
import { RenderTypes } from '../../interfaces/enums';
export declare class Bubble extends Scatter {
type: string;
renderType: RenderTypes;
getRadiusScale(selection: Selection): import('d3-scale').ScaleLinear;
styleCircles(selection: Selection, animate: boolean): void;
getTooltipAdditionalItems(datum: any): {
label: any;
value: any;
}[];
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy