如何为时间序列线Google扑动图表添加标签?

时间:2019-06-04 11:51:41

标签: charts flutter

我正在使用Charts_flutter包在我的Flutter应用中显示图表,据我所知,我们使用labelAccessorFn在饼图中显示标签,但不适用于时间序列折线图。

对于条形图,我们可以如下添加标签 https://google.github.io/charts/flutter/example/bar_charts/horizontal_bar_label

我想为时间序列折线图实现相同的功能。

所以我添加了 labelAccessorFn: (TimeSeriesSales sales, _) => sales.sales.toString()

https://github.com/google/charts/blob/master/charts_flutter/example/lib/time_series_chart/simple.dart

但没有成功

1 个答案:

答案 0 :(得分:0)

您也可以将RangeAnnotation用于提供标签样式的对象。

行为:[charts.RangeAnnotation(新图表.LineAnnotationSegment())]

根据您的要求更改属性。我也想显示一条自定义的垂直线。