carlokid commented on issue #17005:
URL: https://github.com/apache/echarts/issues/17005#issuecomment-3713619341

   > Any updates on this?
   
   I was able to make a workaround on this by removing `barMinHeight` and 
setting a manually calculated min value (e.g. 10% from highest) for the data.
   ```
   data: config.data.map((val) => ({
       value: val >= 0 && val < minVisibleValue ? minVisibleValue : val,
       originalValue: val,
   })),
   ```


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