Features
- Added
signal
support for reactive bindings. - Switched to
OnPush
change detection by default. - Enabled lazy-loading of the component.
- Now pure ESM, thanks to Highcharts v12.2.0.
Breaking changes
- Dropped
HighchartsChartModule
. Replace your usage ofHighchartsChartModule
with the newprovideHighcharts()
and the standaloneHighchartsChartComponent
orHighchartsChartDirective
. - Dropped
callbackFunction
. Replace your usage of[callbackFunction]="myFunction"
with(chartInstance)="myFunction($event)"
. chartInstance
will not emit at all during destruction anymore.