rusackas commented on issue #30914: URL: https://github.com/apache/superset/issues/30914#issuecomment-5127281079
Think I see it. `transformProps.ts` hard-codes `yAxisMax` to 1 for row contribution mode, applied the same way regardless of orientation (the axis just gets swapped into the x-position for horizontal bars). Contribution ratios can sum fractionally over 1.0 due to floating point, so my guess is this is an echarts clipping quirk on that swapped axis rather than anything wrong in the percentages themselves. Lines up with why bumping the max to 1.00001 fixes it, and why it only shows up in horizontal mode. -- 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]
