-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix(react-charting): correct bar height rendering for values less than 1 in VSBC #34680
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
📊 Bundle size report✅ No changes found |
Pull request demo site: URL |
@@ -0,0 +1,7 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🕵🏾♀️ visual changes to review in the Visual Change Report
vr-tests/Callout 12 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
vr-tests/Callout.Bottom right edge.default.chromium.png | 1120 | Changed |
vr-tests/Callout.Gap space 25.default.chromium.png | 2181 | Changed |
vr-tests/Callout.No callout width specified.default.chromium.png | 2126 | Changed |
vr-tests/Callout.Left center.default.chromium.png | 2544 | Changed |
vr-tests/Callout.Bottom center.default.chromium.png | 2116 | Changed |
vr-tests/Callout.No beak.default.chromium.png | 2177 | Changed |
vr-tests/Callout.Rendering callout attached to a rectangle.default.chromium.png | 1832 | Changed |
vr-tests/Callout.Right top edge.default.chromium.png | 1116 | Changed |
vr-tests/Callout.Root.default.chromium.png | 2181 | Changed |
vr-tests/Callout.Top right edge.default.chromium.png | 1134 | Changed |
vr-tests/Callout.Top center.default.chromium.png | 2113 | Changed |
vr-tests/Callout.Top auto edge.default.chromium.png | 2196 | Changed |
vr-tests/Coachmark 1 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
vr-tests/Coachmark.Collapsed.default.chromium.png | 159 | Changed |
vr-tests/Keytip 2 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
vr-tests/Keytip.Disabled.default.chromium.png | 24 | Changed |
vr-tests/Keytip.Root.default.chromium.png | 51 | Changed |
vr-tests/react-charting-LineChart 2 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
vr-tests/react-charting-LineChart.Multiple.default.chromium.png | 192 | Changed |
vr-tests/react-charting-LineChart.Events - RTL.default.chromium.png | 15 | Changed |
vr-tests/react-charting-VerticalBarChart 1 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
vr-tests/react-charting-VerticalBarChart.Basic - Secondary Y Axis.default.chromium.png | 3 | Changed |
There were 2 duplicate changes discarded. Check the build logs for more information.
@@ -887,6 +887,7 @@ export class VerticalStackedBarChartBase | |||
readonly gapHeight: number; | |||
readonly heightValueScale: number; | |||
readonly adjustedTotalHeight: number; | |||
readonly absStackTotal: number; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this fix needed for VBC and GVBC also
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, the bars render correctly in both VBC and GVBC when the values are less than 1.
Previous Behavior
New Behavior
Related Issue(s)