fix: restrict custom data label colors#10205
Merged
DiegoCardoso merged 1 commit intomainfrom Sep 22, 2025
Merged
Conversation
To ensure a good contrast between the background color of a series and its data label color, a custom color is calculated and set to the data labels. That works well for some types of charts where the labels are placed within an area colored by the series color, like for Organization, Gantt, and Treemap. For other types, however, it can lead to unexpected results, when the data labels are placed in an area covered by the chart's background, when `useHTML` is used. This change restricts the setting of these custom colors to the types mentioned above, where they are expected to work well. Fixes #9988
|
web-padawan
approved these changes
Sep 22, 2025
Collaborator
|
This ticket/PR has been released with Vaadin 25.0.0-alpha12. |
DiegoCardoso
added a commit
that referenced
this pull request
Mar 19, 2026
In #10205, the stroke value for the `.highcharts-color-7` was mistankely removed instead of the `color` value.
DiegoCardoso
added a commit
that referenced
this pull request
Mar 19, 2026
In #10205, the stroke value for the `.highcharts-color-7` was mistakenly removed instead of the `color` value.
vaadin-bot
pushed a commit
that referenced
this pull request
Mar 19, 2026
In #10205, the stroke value for the `.highcharts-color-7` was mistakenly removed instead of the `color` value.
vaadin-bot
pushed a commit
that referenced
this pull request
Mar 19, 2026
In #10205, the stroke value for the `.highcharts-color-7` was mistakenly removed instead of the `color` value.
DiegoCardoso
added a commit
that referenced
this pull request
Mar 19, 2026
In #10205, the stroke value for the `.highcharts-color-7` was mistakenly removed instead of the `color` value. Co-authored-by: Diego Cardoso <diego@vaadin.com>
DiegoCardoso
added a commit
that referenced
this pull request
Mar 19, 2026
In #10205, the stroke value for the `.highcharts-color-7` was mistakenly removed instead of the `color` value. Co-authored-by: Diego Cardoso <diego@vaadin.com>
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.



Description
To ensure a good contrast between the background color of a series and its data label color, a custom color is calculated and set to the data labels. That works well for some types of charts where the labels are placed within an area colored by the series color, like for Organization, Gantt, and Treemap. For other types, however, it can lead to unexpected results when the data labels are placed in an area covered by the chart's background, when
useHTMLis used.This change restricts the setting of these custom colors to the types mentioned above, where they are expected to work well.
Example of data labels with the default color
Example of data labels with the custom color
Fixes #9988
Type of change