Reputation: 1638
I am trying to make half donut chart with multiple data as following picture using apexcharts
So far I only found Semi Circle Gauge
with single data as in their documentation, and when I insert more data into series
, it doesn't come out as I want. Is there any ways to achieve this ? You can see my code sandbox sample here
Upvotes: 2
Views: 4268
Reputation: 5627
You have to change the angles as shown below to create a semi donut
plotOptions: {
pie: {
startAngle: -90,
endAngle: 90
}
}
This feature is available since v3.22.2
Upvotes: 3