The animated bar chart in ECharts functions perfectly on Stackblitz. You can check it out here in the Stackblitz Angular 16 demo.
However, attempting to run the same demo in a local Angular 16 project led to the following errors.
Error: src/app/animated-echarts.component.ts:21:55 - error NG8002: Can't bind to 'autoResize' since it isn't a known property of 'div'.
21 '<div echarts (chartInit)="onChartInit($event)" [autoResize]="false" [options]="options"></div>',
~~~~~~~~~~~~~~~~~~~~
Error: src/app/animated-echarts.component.ts:21:76 - error NG8002: Can't bind to 'options' since it isn't a known property of 'div'.
21 '<div echarts (chartInit)="onChartInit($event)" [autoResize]="false" [options]="options"></div>',
The local version is available on Github. You can see the error by following these steps:
git clone <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d9beb0ad99beb0adb1acbbf7bab6b4">[email protected]</a>:fireflysemantics/charts.git
cd charts
npm i
ng serve -o
Any thoughts or suggestions?