Echarts能否设置一开始就显示数据视图echarts 折线配置项内容和展示

echarts中如何让数据视图默认打开,而不是通过点击打开,同时也可以关闭?

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    toolbox: {
        show: true,
        feature: {
            dataView: {readOnly: false},
            restore: {},
        }
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    yAxis: {},
    series: [{
        type: 'line',
        data:[220, 182, 191, 234, 290, 330, 310]
    }]
};
    
截图如下