UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

20 lines (19 loc) 696 B
import Highcharts from "../highchartsEntryPoint"; import { IHighchartsAxisExtend } from "../../../../../interfaces/HighchartsExtend"; export interface IBubbleAxis extends IHighchartsAxisExtend { allowZoomOutside?: boolean; dataMin?: number; dataMax?: number; options?: any; userMin?: number; userMax?: number; } export interface IBubbleSeries extends Highcharts.Series { bubblePadding?: boolean; minPxSize?: number; maxPxSize?: number; zData?: Array<number | null>; radii?: Array<number | null>; getRadii(zMin: number, zMax: number, series: Highcharts.Series): number | null; } export declare function renderBubbles(HighchartsInstance: any): void;