I have recently update chart.js
from 2.9.4
to 3.6.0
and ng2-chart
from 2.4.3
to 3.0.8
.
I have followed the migration guide from chart.js to migrate to v3.X
I've update my imported module from import { ChartsModule } from 'ng2-charts';
to import { NgChartsModule } from 'ng2-charts';
as provided in the ng2-charts documentation
But since i've update thoses package some imports seems to be missing.
For example before updating i've used to import import { Label, PluginServiceGlobalRegistrationAndOptions } from 'ng2-charts';
but since the update those import are missing from ng2-charts package, and I havn't found any information about this in ng2charts website / github or chart.js.
Does anyone face the same issue concerning missing import due to the migration ?
NB: I'm using angular@13.1.4
Thank you