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 (16 loc) 519 B
/** * Created by philipp on 21/10/15. */ import { IBarLineScatterCandleBubbleDataSet } from './IBarLineScatterCandleBubbleDataSet'; import { BubbleEntry } from '../../data/BubbleEntry'; export interface IBubbleDataSet extends IBarLineScatterCandleBubbleDataSet<BubbleEntry> { /** * Sets the width of the circle that surrounds the bubble when highlighted, * in dp. * * @param width */ highlightCircleWidth: number; readonly maxSize: number; normalizeSizeEnabled: boolean; }