@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.
19 lines (18 loc) • 760 B
TypeScript
import { IBubbleDataSet } from '../interfaces/datasets/IBubbleDataSet';
import { BarLineScatterCandleBubbleDataSet } from './BarLineScatterCandleBubbleDataSet';
import { BubbleEntry } from './BubbleEntry';
export declare class BubbleDataSet extends BarLineScatterCandleBubbleDataSet<BubbleEntry> implements IBubbleDataSet {
mMaxSize: number;
normalizeSizeEnabled: boolean;
highlightCircleWidth: number;
/**
* property to access the "high" value of an entry for this set
*
*/
sizeProperty: string;
constructor(yVals: any, label: any, xProperty?: any, yProperty?: any, sizeProperty?: any);
init(): void;
calcMinMax(): void;
calcMinMaxForEntry(e: BubbleEntry, index?: number): void;
get maxSize(): number;
}