UNPKG

pivot-chart

Version:

pivot table react component

16 lines 636 B
import PivotChart from './pivotChart'; import AsyncPivotChart from './asyncPivotChart'; import ToolBar from './components/toolbar'; import DragableFields from './dragableFields/index'; import { StyledTable } from './components/styledTable'; import * as Theme from './theme'; import { setAutoFreeze } from 'immer'; import * as Utils from './utils'; setAutoFreeze(false); import { sum, count, mean } from 'cube-core'; export var Aggregators = { sum: sum, count: count, mean: mean }; export * from './common'; export { StyledTable, PivotChart, AsyncPivotChart, ToolBar, DragableFields, Theme, Utils }; //# sourceMappingURL=index.js.map