var option = {
title: {
text: 'ECharts 入门示例'
},
tooltip: {},
legend: {
data: ['数量']
},
xAxis: {
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
},
yAxis: {},
series: [
{
name: '数量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}
]
};
title:主要控制图表的标题
legend: 提供图表的展示信息提示
xAxis:提供图表的x轴
yAxis: 定义y轴上如何展示
series:需要展示的数据和展示的数据类型
series类型(series.type)有:line(折线图)、bar(柱状图)、pie(饼图)、scatter(散点图)、graph(关系图)、tree(树图)等