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

Method chartViewMoveOverEventMessage not override

Open mfrizki1 opened this issue 1 year ago β€’ 0 comments

how to use method chartViewMoveOverEventMessage ?

This my code :

class SalesmanActivityFragment : Fragment(), AAChartView.AAChartViewCallBack { ..... val aaOptions = aaChartModel.aa_toAAOptions() aaOptions.yAxis( AAYAxis() .visible(false) .reversedStacks(false) ) aaOptions.touchEventEnabled(true) return aaOptions ...... override fun chartViewMoveOverEventMessage( aaChartView: AAChartView, messageModel: AAMoveOverEventMessageModel ) { val gson = Gson() Log.e("xxx", "πŸš€move over event message " + gson.toJson(messageModel)) } }

mfrizki1 avatar Dec 15 '23 07:12 mfrizki1