-
Notifications
You must be signed in to change notification settings - Fork 16
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
AG-12978 Normalised stacked area nulls and zeroes #3121
base: latest
Are you sure you want to change the base?
Conversation
b123af1
to
a2fccf0
Compare
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.
Correct – except there should be no marker for ie
at 2018
.
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.
Correct
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.
Correct
a2fccf0
to
d2ffa32
Compare
// Note - Array.isArray(new Float64Array) is false, and this type is used for stack accumulators | ||
const valueExtent = typeof value === 'number' ? value : Math.max(...value.map((v) => v ?? 0)); | ||
const valIdx = valueExtent < 0 ? 0 : 1; | ||
if (value == null || typeof value !== 'number') continue; |
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.
The array here looked to just be an accumulator, the actual values are the non-array ones so I believe we can just skip those?
https://ag-grid.atlassian.net/browse/AG-12978
https://ag-grid.atlassian.net/browse/AG-13341