blob: 775c37a250938801539d9b296e1bea0acb97728b [file] [log] [blame]
/*
title: Smoothed Line Chart
category: line
titleCN: 基础平滑折线图
difficulty: 0
*/
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line',
smooth: true
}]
};