Awesome Chart

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['first', 'second', 'third']
    },
    yAxis: {},
    series: [{
        type: 'line',
        data:[-1, 0, 0]
    }]
};