gallery在线编辑器中无法使用xAxis和yAxis的默认维度

描述:当前是关于Echarts图表中的 折线图 示例。
 
            // 在 直角坐标系 (grid) 中『维度X』和『维度Y』
// 会默认对应于 xAxis 和 yAxis

option = {
    xAxis: {
        type: 'category'
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [
            ['Mon', 820],
            ['Thu', 932]
        ],
        type: 'line'
    }]
};