effectiveLegendIconType method

  1. @override
ShapeMarkerType effectiveLegendIconType()
override

Returns the legend icon type.

Implementation

@override
ShapeMarkerType effectiveLegendIconType() =>
    dashArray != null && !dashArray!.every((double value) => value <= 0)
        ? ShapeMarkerType.lineSeriesWithDashArray
        : ShapeMarkerType.lineSeries;