little cute

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
    title: {
        text: 'little cute'
    },
    xAxis: {
        data: ['cat', 'sheep', 'dog', 'pig', 'duck', 'chick', 'cow','puppy','wangmeng']
    },
    yAxis: {},
    series: [{
        type: 'line',
        data:[220, 182, 191, 234, 290, 330, 310,200,600]
    }]
};