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.

15 lines 563 B
import { BarLineScatterCandleBubbleData } from './BarLineScatterCandleBubbleData'; export class BubbleData extends BarLineScatterCandleBubbleData { /** * Sets the width of the circle that surrounds the bubble when highlighted * for all DataSet objects this data object contains, in dp. * * @param width */ set highlightCircleWidth(width) { for (let index = 0; index < this.mDataSets.length; index++) { this.mDataSets[index].highlightCircleWidth = width; } } } //# sourceMappingURL=BubbleData.js.map