x property

  1. @override
List<Point2<X, Y>> x
override

Return the points from the x-axis of this series.

Implementation

@override
List<Point2<X, Y>> get x =>
    _data.map((point) => Point2(x: point.key, y: point.x)).toList();