I am using charts_flutter package to display charts in my flutter app, as far as I know, we use labelAccessorFn to show labels in Pie Chart but it's not working for time series line chart.
For the Bar chart, We can add the label as below https://google.github.io/charts/flutter/example/bar_charts/horizontal_bar_label
I want to implement the same for the time-series line chart.
So I have added
labelAccessorFn: (TimeSeriesSales sales, _) => sales.sales.toString(),
but Not get success