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


代码如下:

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'}
    ]
};

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM