AAChartCore
AAChartCore copied to clipboard
Polar Column Chart is not making a full circle
val aaChartModel = AAChartModel()
.chartType(AAChartType.Column)
.polar(true)
.legendEnabled(false)
.xAxisLabelsEnabled(false)
.yAxisLabelsEnabled(false)
.xAxisVisible(false)
.yAxisVisible(false)
.tooltipEnabled(false)
.series(arrayOf(
AASeriesElement().data(arrayOf(4)),
AASeriesElement().data(arrayOf(4)),
AASeriesElement().data(arrayOf(4)),
AASeriesElement().data(arrayOf(4))
))
is giving me this:

It should make a full circle.
Hi, I'm working on an app with this and just can't seem to find out the issue why this occurs.
@AAChartModel , could you check this issue ?