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.
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
Add option for rounded corners on bar charts #6761
Add option for rounded corners on bar charts #6761
Changes from all commits
024f05f
31c3ac2
b0c6258
d71fe49
bb78c78
5dfd686
64912d4
cc1e6ff
dc2c54c
3b725fa
870d4c9
aa8ba1e
5845e0e
85f47c6
578712a
8f77cde
45689ae
137e185
795235b
dd717b6
35e0c8f
7aa7496
250bf31
495d950
be0ddff
819e8bf
ed69422
4a44291
65d3b55
e8cdde1
9c4227e
dabcaf0
701fd8c
29589e8
d0b9a90
3e5a957
582ce13
a238c87
ac329f7
8a607e6
338b4e6
60c918e
9dd0896
1628b5c
bfbd397
71e4896
4e794d0
dedce2a
b137b25
fdd6d03
8fcc3a5
71b53c3
90cf5c3
510c66b
5599ea6
8dffbbe
c165f6a
ee2451a
256a87e
b122521
015b881
8b57fb5
ec44d87
2913c6e
9e3c249
f986349
99352d0
6f685c0
f093ee7
e3cd5a5
98356b4
a2befea
781fbe2
97f0b0e
c52890c
10e38f4
f7d4b4a
4335ba0
e9043e9
4624132
8c45d15
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
We only need these when having bars with rounded corners.
This function is pretty slow and it should not be called when it is not really needed.
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.
@archmoj Yes good point. Would it make sense then to check whether any of the traces in
calcTraces
have acornerradius
value, and skip this function if not?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.
Yes that's a good idea.