AAChartCore-Kotlin icon indicating copy to clipboard operation
AAChartCore-Kotlin copied to clipboard

Model.series changed from Array<AASeriesElement> to Array<Any> does not work anymore after todays update

Open nicodiansk opened this issue 3 years ago β€’ 1 comments

Hi, I saw in commit 8f51a68a7cffea45598456e1667aa01f777d0545 that you updated the .series method, I tried to cast my Array of AASeriesElement to Array of Any but it does not show the Y Axis values. Any idea of what should I do or how can I go back to the previous version?

nicodiansk avatar Mar 22 '22 08:03 nicodiansk

Try to change

	dependencies {
	        implementation 'com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT'
	}

to be

        dependencies {
	        implementation 'com.github.AAChartModel:AAChartCore-Kotlin:6.1.0'
	}

then sync project dependencies again.

AAChartModel avatar Mar 22 '22 11:03 AAChartModel