-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
fix(declarative-chart): Heatmap black color fix #33751
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 regressions to review in the fluentuiv8 Visual Regression Report
Keytip 1 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
Keytip.Offset.chromium.png | 121 | Changed |
react-charting-AreaChart 1 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
react-charting-AreaChart.Custom Accessibility.chromium.png | 11 | Changed |
react-charting-LineChart 1 screenshots
Image Name | Diff(in Pixels) | Image Type |
---|---|---|
react-charting-LineChart.Gaps.chromium.png | 1 | Changed |
@@ -627,11 +627,13 @@ export const transformPlotlyJsonToHeatmapProps = (input: PlotlySchema): IHeatMap | |||
x: input.layout?.xaxis?.type === 'date' ? (xVal as Date) : xVal ?? 0, | |||
y: input.layout?.yaxis?.type === 'date' ? (yVal as Date) : yVal, | |||
value: zVal, | |||
rectText: zVal, | |||
rectText: isNaN(zVal) ? 'No Data' : zVal, |
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.
Can you add tests for this change?
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.
Sure.
New Behavior
Related Issue(s)