radius property
Equivalent to Line.y, except the accessor returns the radius: the distance from the origin.
final line = LineRadial(…)..radius = (d, i, data) => x(d["temperature"]);
Implementation
num Function(T, int, List<T>) get radius => _y;
Equivalent to Line.y, except the accessor returns the radius: the distance from the origin.
final line = LineRadial(…)..radius = (d, i, data) => x(d["temperature"]);
num Function(T, int, List<T>) get radius => _y;