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.

17 lines 559 B
import { BarLineScatterCandleBubbleData } from './BarLineScatterCandleBubbleData'; export class ScatterData extends BarLineScatterCandleBubbleData { /** * Returns the maximum shape-size across all DataSets. */ get greatestShapeSize() { let max = 0; for (let index = 0; index < this.mDataSets.length; index++) { const size = this.mDataSets[index].scatterShapeSize; if (size > max) { max = size; } } return max; } } //# sourceMappingURL=ScatterData.js.map