How can we create trellis chart in Angular 10 using Highcharts.
I found a resource that shows how to create trellis chart but using javascript. http://jsfiddle.net/pranavmdesai/vd6w53sk/6/
In angular, packages that i am using is npm install angular-highcharts npm install highcharts
So, we need to use two objects like below
Highcharts = Highcharts;
chartOptions = {};
But as per the example provided in above resource, we need to push each chart in array and assign a container to it in html for the chart to render itself. But how do we achieve the same functionality in angular 10 because we assign above objects as below in HTML
<highcharts-chart
[Highcharts]="Highcharts"
[options]="chartOptions"
style="width: 100%; height: 500px; display: block;"
></highcharts-chart>