UNPKG

@visactor/react-vtable

Version:

The react version of VTable

15 lines (11 loc) 427 B
import { register } from "@visactor/vtable"; import { PivotChart as PivotChartConstrouctor } from "@visactor/vtable"; import { createTable } from "./base-table"; export const PivotChart = createTable("PivotChart", { type: "pivot-chart", vtableConstrouctor: PivotChartConstrouctor }); export function registerChartModule(name, chart) { register.chartModule(name, chart); } //# sourceMappingURL=pivot-chart.js.map