I am using Angular 13 and in my component.html I have this:
This line works:
<highcharts-chart [constructorType]="'stockChart'"></highcharts-chart>
Now, when I have a variable:
myvalue = 'stockChart';
And do this:
<highcharts-chart [constructorType]="myvalue"></highcharts-chart>
or
<highcharts-chart [constructorType]="'myvalue'"></highcharts-chart>
or
<highcharts-chart [constructorType]="{{myvalue}}"></highcharts-chart>
The 3 above don't work but the first one does.
How can I get it to work using the variable?