ticks property

List<DateTime> get ticks

Implementation

List<DateTime> get ticks {
  List<DateTime> tl = [];
  for (int i = 0; i <= tickCount; i++) {
    tl.add(_convertValue(domain.first, i, splitType));
  }
  return tl;
}