c3-anerishah opened a new issue, #17599:
URL: https://github.com/apache/echarts/issues/17599

   ### Version
   
   5.3.3
   
   ### Link to Minimal Reproduction
   
   https://jsfiddle.net/qnxh0k64/
   
   ### Steps to Reproduce
   
   1. Create the box plot chart with the config in the attached JSFiddle
   2. The minimal config has been pasted here for convenience:
   `{
       "xAxis": [
           {
               "type": "category",
               "data": [
                   "thickness"
               ],
               "gridIndex": 0
           }
       ],
       "yAxis": [
           {
               "type": "value",
               "splitArea": {
                   "show": true
               },
               "gridIndex": 0
           }
       ],
       "series": [
           {
               "name": "Boxplot",
               "type": "boxplot",
               "data": [
                   [
                       12.01,
                       12.1325,
                       12.205,
                       12.255,
                       12.37
                   ]
               ],
               "xAxis": 0,
               "yAxis": 0,
               "color": "#253EB5",
           },
           {
               "name": "Mild Outlier",
               "type": "scatter",
               "data": [
                   [
                       0,
                       11.93
                   ]
               ],
               "xAxis": 0,
               "yAxis": 0,
               "color": "#E8B500"
           }
       ],
   }`
   
   ### Current Behavior
   
   See that the boxplot is squished to the top of the chart with a lot of 
whitespace under it. Since I am not providing any custom min max values for the 
y-axis, the built-in echart heuristics for these values are not performing 
correctly here.
   
   ### Expected Behavior
   
   I would expect the y-axis values to span a smaller range - perhaps 10-14 in 
this case - so that the box plot's features can be accurately identified in the 
chart rather than squished to one part of the chart with whitespace around it.
   
   ### Environment
   
   _No response_
   
   ### Any additional comments?
   
   _No response_


-- 
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.

To unsubscribe, e-mail: [email protected]

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