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
updateMode
Chart.js' update() method can accept update mode as argument.
update()
(method) Chart<TType, TData, TLabel>.update(mode?: "resize" | "reset" | "none" | "hide" | "show" | "normal" | "active" | undefined): void
Currently, react-chartjs-2 doesn't support passing update mode to Chart.js.
Need to implement the updateMode property to pass it to every chartRef.current.update() call.
chartRef.current.update()
Source: #1006
The text was updated successfully, but these errors were encountered:
Implemented in 4.2.0.
4.2.0
Sorry, something went wrong.
No branches or pull requests
What problem are you trying to solve?
Chart.js'
update()
method can accept update mode as argument.Currently, react-chartjs-2 doesn't support passing update mode to Chart.js.
Describe the solution you'd like
Need to implement the
updateMode
property to pass it to everychartRef.current.update()
call.Source: #1006
The text was updated successfully, but these errors were encountered: