AAChartCore-Kotlin
AAChartCore-Kotlin copied to clipboard
It is not clear how to set the size of the hole for the pie chart
It is not clear how to set the size of the hole for the pie chart so that it looks the same as in the picture in the documentation
@Mozgus I was looking for the same actually, any findings?
@Mozgus I found it, use the method innerSize
of AASeriesElement
:
AASeriesElement()
.data(statistics)
.dataLabels(
AADataLabels()
.enabled(false)
)
.innerSize("70%")
.name("Utgifter")