const dataArray = [{ name: "LTNS", id: 1, percentage: 60, price: 900000 },
{ name: "NPCS", id: 2, percentage: 30, price: 342000 },
{ name: "MARCOS", id: 3, percentage: 10, price: 600000 }]
To create a stacked bar chart in Angular using angular-highchart with the data specified above, the resulting chart should resemble the one shown in the following image:
https://i.sstatic.net/vBR8o.png
The version of angular-highchart being used is 7.2.0.
Despite searching through various resources, I have not found any that match the exact requirements stated above.