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.

16 lines (15 loc) 625 B
import { AbstractBuffer } from './AbstractBuffer'; import { IBarDataSet } from '../interfaces/datasets/IBarDataSet'; export declare class BarBuffer extends AbstractBuffer<IBarDataSet> { dataSetIndex: number; dataSetCount: number; containsStacks: boolean; inverted: boolean; /** width of the bar on the x-axis, in values (not pixels) */ barWidth: number; yAxisMin: number; yAxisMax: number; constructor(size: number, dataSetCount: number, containsStacks: boolean); protected addBar(entry: any, left: any, top: any, right: any, bottom: any): void; feed(data: IBarDataSet): number; }