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.

10 lines (7 loc) 356 B
import { LineData } from '../../data/LineData'; import { BarLineScatterCandleBubbleDataProvider } from './BarLineScatterCandleBubbleDataProvider'; import { AxisDependency } from '../../components/YAxis'; export interface LineDataProvider extends BarLineScatterCandleBubbleDataProvider { lineData: LineData; getAxis(dependency: AxisDependency); }