serie name on bubble chart, category axis position, leader lines on bubble chart#1100
Merged
gitbrent merged 1 commit intogitbrent:masterfrom Aug 6, 2022
Conversation
e3c3f28 to
ef0f238
Compare
gitbrent
added a commit
that referenced
this pull request
Jul 26, 2022
Merged
Owner
|
Thanks Mathieu! |
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.
Ability to add serie name to bubble chart
The goal is to actually display a label aside each bubble. Adding a label per bubble requires generating a lot of XML: adding a new column with label as data, and data references to these labels.
Adding serie name is much easier, only setting a flag. The trick is then to create one serie per bubble: X axis contains the positions of all bubbles, then each serie contains a single value. It also allows setting the color for each bubble, again without complex generation.
Category axis position
Values axis can be set at an arbitrary position using
valAxisCrossesAt, but category axis could not be positioned the same way. AddcatAxisCrossesAtthat behaves the same way to set it, and preserve previous behaviour when not set.Leader lines on bubble chart
Leader lines could be enabled by a property, but were not enabled on bubble chart. Those are not displayed by default as Powerpoint judges that when the label is at its default position, then leader line is redundant. But if the label is moved, leader line appears.
Result