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 (11 loc) 254 B
import { Entry } from './Entry'; export interface CandleEntry extends Entry { /** shadow-high value */ high: number; /** shadow-low value */ low: number; /** close value */ close: number; /** open value */ open: number; }