UNPKG

cione-comp-lib

Version:

`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`

12 lines (11 loc) 448 B
import BoxplotSeriesModel from "./BoxplotSeries.mjs"; import BoxplotView from "./BoxplotView.mjs"; import boxplotLayout from "./boxplotLayout.mjs"; import { boxplotTransform } from "./boxplotTransform.mjs"; function install(registers) { registers.registerSeriesModel(BoxplotSeriesModel); registers.registerChartView(BoxplotView); registers.registerLayout(boxplotLayout); registers.registerTransform(boxplotTransform); } export { install };