-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
IE 11 legend toggle #2528
Comments
This was already mentioned before. Just change it works in all browsers after this |
@SovietAlex, thank you, I've already fixed it locally, but I think that this bug has to be fixed in the main version of c3js, because this is a critical error. |
Hi, it might be a bit tricky, but I solved it by writing the following in CSS: .c3-target[style*="opacity: 1"] {
display: block !important;
} |
I agree with @vlarkovich this should be included in the main version |
I'd like to make a PR ready for this, but it may take some time as this would be my first PR for this project and I have to set up a few things according to the contribution guidelines first. |
PR at #2741 |
Steps to reproduce:
Or
Expected result:
Data should not dissapear from chart.
Maybe it is because IE doesn't support
display: initial
css style and when api.show is called it doesn't removedisplay: none
that was added in api.hidec3/src/api.show.js
Line 13 in 9f54601
The text was updated successfully, but these errors were encountered: