bounds property

  1. @override
BoundingBox get bounds
override

The bounding box of the chart item.

Implementation

@override
BoundingBox get bounds {
  _checkIfEmpty();
  return BoundingBox(minX: x, maxX: x, minY: minY, maxY: maxY);
}