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.

12 lines (10 loc) 218 B
import { Entry } from './Entry'; /** */ export interface BarEntry extends Entry { isStacked?: boolean; yVals?: number[]; positiveSum?: number; negativeSum?: number; ranges?: [number, number][]; }