Closed apollo1220 closed 1 year ago
When using the Areasplinerange chart type, if you set the markerRadius to 0 (or any other value) it has no effect on the rendered chart. The same code works if using the Area chart type.
aaChartModel = AAChartModel() .chartType(AAChartType.Areasplinerange) .backgroundColor("#000000") .axesTextColor("#FFFFFF") .dataLabelsEnabled(false) .series(/**/) aaChartModel.markerRadius = 0 val chart = view?.findViewById<AAChartView>(R.id.chart) chart?.aa_drawChartWithChartModel(aaChartModel)
It was fixed in this commit
Update the AAChartCore-Kotlin to the latest content, the problem would be solved.
When using the Areasplinerange chart type, if you set the markerRadius to 0 (or any other value) it has no effect on the rendered chart. The same code works if using the Area chart type.