UNPKG

@nativescript-community/ui-chart

Version:

A powerful chart / graph plugin, supporting line, bar, pie, radar, bubble, and candlestick charts as well as scaling, panning and animations.

20 lines (19 loc) 677 B
import { BubbleChartRenderer } from '../renderer/BubbleChartRenderer'; import { BarLineChartBase } from './BarLineChartBase'; /** * The BubbleChart. Draws bubbles. Bubble chart implementation: Copyright 2015 * Pierre-Marc Airoldi Licensed under Apache License 2.0. In the BubbleChart, it * is the area of the bubble, not the radius or diameter of the bubble that * conveys the data. * */ export class BubbleChart extends BarLineChartBase { init() { super.init(); this.renderer = new BubbleChartRenderer(this, this.animator, this.viewPortHandler); } get bubbleData() { return this.mData; } } //# sourceMappingURL=BubbleChart.js.map