AAChartCore icon indicating copy to clipboard operation
AAChartCore copied to clipboard

Polar Column Chart is not making a full circle

Open Queatz opened this issue 4 years ago • 1 comments

        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:

Hình chụp từ 2021-06-11 17-49-24

It should make a full circle.

Queatz avatar Jun 11 '21 22:06 Queatz

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 ?

ibrahim-iqbal avatar Oct 09 '23 14:10 ibrahim-iqbal