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.

11 lines (9 loc) 418 B
import { ChartData } from './ChartData'; import { Entry } from './Entry'; import { IBarLineScatterCandleBubbleDataSet } from '../interfaces/datasets/IBarLineScatterCandleBubbleDataSet'; /** * Baseclass for all Line, Bar, Scatter, Candle and Bubble data. * */ export declare abstract class BarLineScatterCandleBubbleData<U extends Entry, T extends IBarLineScatterCandleBubbleDataSet<U>> extends ChartData<U, T> { }