We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
chart.ygrids.add([{ value: 1, text: 'Pressure Low' }, { value: 4, text: 'Pressure High' }]); // success chart.ygrids.remove([{ value: 1, text: 'Pressure Low' }, { value: 4, text: 'Pressure High' }]); //fail I think in c3_chart_internal_fn.getGridFilterToRemove method of c3.js: if ((('value' in param && line.value === params.value) || ('class' in param && line['class'] === params['class']))) Should be: if ((('value' in param && line.value === param.value) || ('class' in param && line['class'] === param['class'])))
The text was updated successfully, but these errors were encountered:
verified after modification.
Sorry, something went wrong.
Fix grid filtering to add and remove - #720
12cb277
Thank you for your reporting. You're right. I think this has been fixed by this commit and I'll release this in the next version. Thanks!
I released v0.4.2 for this fix, so please let me close.
No branches or pull requests
The text was updated successfully, but these errors were encountered: