uniapp中使用百度图表echarts的pie饼图简要过程记录
比如要实现如下图的功能:
1.安装echarts,在项目目录中运行
npm i echarts
2.模板代码:
<div id="chartbox1" style="width: 100%;height:100%;min-height:200px;"></div>
3.js调用
import * as echarts from "echarts"
var that = this;
var myChart = echarts.init(document.getElementById("chartbox1"));
// 指定图表的配置项和数据
var option = {
tooltip: {
trigger: 'item'
},
series: [
{
name: '销量',
type: 'pie',
data: [
{value: 20, name: '基金'},
{value: 735, name: 'GC001'},
{value: 580, name: '股票'}
]
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);