forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: zIndex order for areas, lines and points (opensearch-project#290)
This commit change the rendering order of the line series and area series. For lines we render: for each series the line and each data point, instead of rendering first all the lines and then all the points. For areas, depending if the area is stacked or not: - if stacked, we render fist all the areas, than all the lines and than all the points (this will avoid having a lines partially rendered below the above area) - if non stacked, we render groups of areas, line, points. so each group id rendered on a different layer. This PR also remove completely the animation from lines and areas as its currently disabled in the library. We will reintegrate the animation in a future release. fix opensearch-project#287
- Loading branch information
Showing
5 changed files
with
189 additions
and
165 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.