date static method
Date axis formatter
Implementation
static String date(DateTime dt, String pattern, {String? locale}) {
final key = 'date_${pattern}_$locale';
final fmt = _dateCache.putIfAbsent(key, () => DateFormat(pattern, locale));
return fmt.format(dt);
}