angle property

num Function(T, int, List<T>) angle

Equivalent to Area.x, except the accessor returns the angle in radians, with 0 at -y (12 o’clock).

final area = AreaRadial(…)..angle = (d, i, data) => a(d["Date"]);

Implementation

num Function(T, int, List<T>) get angle => _x0;
void angle=(num angle(T, int, List<T>))

Implementation

set angle(num Function(T, int, List<T>) angle) {
  _x0 = angle;
  _x1 = null;
}