/** * YwCharts YWFE 图表组件 * @version 0.1.1 * @description YWFE 图表组件 * @module YwCharts * @exports YwCharts * @requires react */ import './index.css'; /** 组件参数定义 */ export * from './types'; /** 折线&曲线 */ export { default as YwLineChart } from './components/YwLineChart'; /** 双轴曲线 */ export { default as YwDualAxesChart } from './components/YwDualAxesChart'; /** 面积图 */ export { default as YwAreaChart } from './components/YwAreaChart'; /** 柱状图 */ export { default as YwColumnChart } from './components/YwColumnChart'; /** 饼图&环形图 */ export { default as YwPieChart } from './components/YwPieChart';