首页 > 其他 > 详细

echarts散点多图例x、y轴反转

时间:2019-10-25 14:53:20      阅读:250      评论:0      收藏:0      [点我收藏+]

代码如下:

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: {},
    seriesLayoutBy: ‘row‘,
    // Declare several bar series, each will be mapped
    // to a column of dataset.source by default.
    series: [
        {type: ‘scatter‘, seriesLayoutBy: ‘row‘},
        {type: ‘scatter‘, seriesLayoutBy: ‘row‘},
        {type: ‘scatter‘, seriesLayoutBy: ‘row‘},
        {type: ‘scatter‘, seriesLayoutBy: ‘row‘},
        {type: ‘scatter‘, seriesLayoutBy: ‘row‘},
        {type: ‘scatter‘, seriesLayoutBy: ‘row‘}
    ]
};

 

echarts散点多图例x、y轴反转

原文:https://www.cnblogs.com/qtx-/p/11737754.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!