机头echarts scatter配置项内容和展示

配置项如下
      var data = [
    [0,0],
    [3.275154, 2.957587],
    [-3.344465, 2.603513],
    [0.355083, -3.376585],
    [1.852435, 3.547351],
    [-2.078973, 2.552013],
    [-0.993756, -0.884433],
    [2.682252, 4.007573],
    [-3.087776, 2.878713],
    [-1.565978, -1.256985],
    [1.148946, 3.345138],
];

option = {
    baseOption: {
        title: {
            text: '机头',
            left: 'center'
        },
        xAxis: {
            type: 'value'
        },
        yAxis: {
            type: 'value'
        },
        series: [{
            type: 'scatter',
            data: data
        }]
    },
    options: []
};



    
截图如下