You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to bulk set properties, try using the [lodash.merge](https://lodash.com/docs/#merge) function. This function will do a deep recursive merge preserving previously set values that you don't want to update.
89
89
90
-
```javascript
90
+
```js
91
91
import { defaults } from'react-chartjs-2';
92
92
importmergefrom'lodash.merge';
93
93
// or
@@ -109,7 +109,7 @@ merge(defaults, {
109
109
110
110
A function to be called when mouse clicked on chart elememts, will return all element at that point as an array. [Check](https://github.com/chartjs/Chart.js/blob/master/docs/09-Advanced.md#getelementsatevente)
0 commit comments