I was usingecharts v5.4.3 with ngx-echarts 15.0.3 and angular 15, but when I updated echarts to v5.5.0 I notice that the theme is not working.
I have an application as a library where I am using the echarts package to create some graphics and there it is working correctly, I have problems in the application when I install this package. Echarts is a peerDependency of this package. Should I add something in the angular.json or in some other file? For example in the scripts section of angular.json like:
I was using
echarts v5.4.3
withngx-echarts 15.0.3
andangular 15
, but when I updatedecharts to v5.5.0
I notice that the theme is not working.I have an application as a library where I am using the echarts package to create some graphics and there it is working correctly, I have problems in the application when I install this package. Echarts is a peerDependency of this package. Should I add something in the angular.json or in some other file? For example in the scripts section of angular.json like:
In the aplication as library I am only importing the theme in the module this way:
And I am using this way to create the graphics:
<div echarts [options]="echartsOption" theme="macarons"></div>