createMeasureValue method

Widget createMeasureValue(
  1. BuildContext context,
  2. LegendEntry legendEntry,
  3. TappableLegend legend,
  4. bool isHidden,
)

Implementation

Widget createMeasureValue(BuildContext context,
    common.LegendEntry legendEntry, TappableLegend legend, bool isHidden) {
  return new GestureDetector(
      child: new Text(legendEntry.formattedValue!),
      onTapUp: makeTapUpCallback(context, legendEntry, legend));
}