UNPKG

reaviz

Version:

Data Visualization using React

7 lines (6 loc) 351 B
import { ChartNestedDataShape, ChartInternalNestedDataShape } from './types'; export type StackTypes = 'default' | 'expand' | 'diverging'; /** * Builds a stack dataset from the standard data format. */ export declare function buildBarStackData(data?: ChartNestedDataShape[], offset?: StackTypes, direction?: string): ChartInternalNestedDataShape[];