Add disableCircularFalloff option for multi heatmaps rendering#35
Open
toandiep wants to merge 2 commits into
Open
Add disableCircularFalloff option for multi heatmaps rendering#35toandiep wants to merge 2 commits into
disableCircularFalloff option for multi heatmaps rendering#35toandiep wants to merge 2 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi @nswamy14,
Thank you for this amazing library!
It would be really cool if you could review this PR.
This one introduces a new
disableCircularFalloffconfiguration option that enables different colors for different value ranges based on gradients.Use case for my request
We would like to visualize multiple heatmaps at the same time by creating a combined/composite heatmap. Ultimately, we will examine the value of each point to determine which heatmap contributes to the intensity and how different heatmaps overlap or combine.
For example, in football analytics, we may want to visualize the activity heatmaps of two teams:
By overlaying them, areas dominated by one team appear in their team’s color, while overlapping areas blend (e.g., purple if blue and red overlap).
Changes Made
disableCircularFalloff?: booleantoHeatmapConfiginterface.setDisableCircularFalloff(boolean)method for runtime configuration.FUNC_ADDtoMAXto ensure that overlapping points display the maximum value rather than additive blending.Usage
We want to render two heatmaps on the same scale.
Hope this works for you!
Thanks,
Ken