neu-charts
Version:
neu-charts is a ngx-charts wrapper and charting framework for Angular 2 and beyond!.
14 lines (13 loc) • 646 B
TypeScript
import { BarOptions } from "./bar-options";
export declare class BubbleOptions extends BarOptions {
autoScale: boolean;
xScaleMin: any;
xScaleMax: any;
yScaleMin: any;
yScaleMax: any;
roundDomains: boolean;
minRadius: number;
maxRadius: number;
view: any;
constructor(showLegend?: boolean, showXAxis?: boolean, showYAxis?: boolean, showXAxisLabel?: boolean, showYAxisLabel?: boolean, xAxisLabel?: string, yAxisLabel?: string, autoScale?: boolean, xScaleMin?: number, xScaleMax?: number, yScaleMin?: number, yScaleMax?: number, roundDomains?: boolean, minRadius?: number, maxRadius?: number, view?: any);
}