Echart
echart¶
快速上手¶
- 在github仓库dist目录下拷贝echart.js 和 echart.min.js到index.html目录下。
Vue-ECharts¶
参考中文文档
实践¶
简单柱状图¶
option = {
title: {
text: 'Percentage of page walk time overhead caused by data TLB misses',
subtext: 'GUPS RandomAccess benchmark'
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
xAxis: {
name: 'input-data \nsize',
type: 'category',
data: ['2^29', '2^30', '2^31', '2^32'],
},
yAxis: {
// name: 'Percentage',
type: 'value',
title: 'align'
},
series: [
{
name: "Percentage",
data: [13.20, 19.50, 45.22,66.81],
type: 'bar',
label: {
show: true,
position: 'top'
},
}
]
};
需要进一步的研究学习¶
暂无
遇到的问题¶
暂无
开题缘由、总结、反思、吐槽~~¶
参考文献¶
无