fans-chart-nasirq
v1.0.1
Published
the chart base on echarts 、vue,learn vue npm
Downloads
34
Readme
安装
npm install fans-chart-nasirq --save引入项目
// main.js
pie组件中所引入的参数
//父组件中引入
<pieChart ref="pie" class="xxxxxx" :options="options" v-if="isShow"></pieChart>
// options 参数
that.options = {
id: "xxxIdd", //id
data: [{ name: "男性", value: 300 }, { name: "女性", value: 250 }], //传送数据[{name:'男性',value:300}] , [{name:'微博',value:200}]
width: 400, //宽度 缺省:500
height: 300, //高度 缺省 : 500
pieType: "sex" //sex , platform 饼状图颜色
};
// 获取新数据调用刷新函数
that.$refs.pie.init();
