rusackas commented on issue #26292:
URL: https://github.com/apache/superset/issues/26292#issuecomment-2065418519

   Quite right, still happening in 4.0
   
   Log axis off (fine):
   <img width="1728" alt="image" 
src="https://github.com/apache/superset/assets/812905/0b97297b-c30d-4285-b642-6e3d5e115ed8";>
   
   Log axis on (problem):
   <img width="1396" alt="image" 
src="https://github.com/apache/superset/assets/812905/3f46798c-5e8e-4df8-a9e7-92e64f01e4bc";>
   
   Note that there are 0 values in columns, a, b, and c, but for some reason 
only `a` seems to be a problem.
   
   The chart does this in vertical AND horizontal mode.
   
   Here's a query if anyone wants some mock data:
   
   ```sql
   SELECT fruit, a, b, c FROM (
       VALUES
       ('Apple', 0, 1, 2),
       ('Banana', 2, 3, 4),
       ('Cherry', 2, 1, 0),
       ('Date', 1, 2, 3),
       ('Elderberry', 2, 0, 2)
   ) AS temp_table (fruit, a, b, c);
   ```


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