图表组件库--饼图组件

1.注册配置
完成
1步骤后继续
2.组件使用
vue
import { comChartPie } from '@bdsoft/chart';
const _options = shallowRef(null);
_options = {
datas: _datas,//_datas 为数组[{lable:'',value:''}]
config: {
NameField:"datas中的文本显示lable字段",
ValueField:"datas中的值value字段"
}
};
<comChartPie :options="_options" style="width: 835px; height: 400px"> </comChartPie>
靶点平台