94385605 opened a new issue #14345:
URL: https://github.com/apache/echarts/issues/14345


   
![image](https://user-images.githubusercontent.com/18280776/109107212-4bfd5900-776c-11eb-995d-e0cb8c574a12.png)
   
   示例配置:
   ```
   const option = {
        legend: {},
        tooltip: {},
        dataset: {
                source: [
                        ['product', '2012', '2013', '2014', '2015'],
                        ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],
                        ['Milk Tea', 86.5, 92.1, 85.7, 83.1],
                        ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4],
                ],
        },
        xAxis: [{ type: 'category' }],
        yAxis: [
                {
                        gridIndex: 0,
                        splitNumber: 5,
                },
        ],
        series: [
                { type: 'bar' },
                { type: 'bar' },
        ],
        visualMap: [
                {
                        type: 'piecewise',
                        dimension: 2,
                        outOfRange: { color: '#5470c6' },
                        pieces: [{ lt: 40, color: 'yellow' }],
                },
        ],
   };
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to