折线图配置dimensions无法显示

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
    xAxis: [
        {
            type: 'category',
            data: ['1月','2月']
        }
    ],
    yAxis: [
        {
            type: 'value'
        }
    ],
    series: [
        {
            type:'line',
            dimensions: ['a', 'b'],
            encode: {
                x: 'a',
                y: 'b'
            },
            data:[
                ['1月', 2.0],
                ['2月', 4.9]
            ]
        }
    ]
};