效果如下:

有图例的echarts散点图(用dataset)

 

 

代码如下:

option = {
    legend: {},
    tooltip: {},
    dataset: {
        source: [
            ['product', '2015', '2016', '2017'],
            ['Matcha Latte', 43.3, 85.8, 93.7],
            ['Milk Tea', 83.1, 73.4, 55.1],
            ['Cheese Cocoa', 86.4, 65.2, 82.5],
            ['Walnut Brownie', 72.4, 53.9, 39.1]
        ]
    },
    xAxis: {type: 'category'},
    yAxis: {},
    // Declare several bar series, each will be mapped
    // to a column of dataset.source by default.
    series: [
        {type: 'scatter'},
        {type: 'scatter'},
        {type: 'scatter'}
    ]
};

 

相关文章:

  • 2022-12-23
  • 2021-09-04
  • 2021-09-11
  • 2021-12-10
  • 2022-01-14
  • 2022-12-23
  • 2021-09-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-14
  • 2023-02-20
  • 2021-11-18
  • 2021-08-30
相关资源
相似解决方案