heart_rate_chart 1.1.1
heart_rate_chart: ^1.1.1 copied to clipboard
A lightweight Flutter heart‑rate range chart (hour buckets + spikes) with rich customization.
1.1.1 #
- Added
xTimeLabelFormattertoHeartRateChartConfig.- Allows full control over X-axis time label formatting using a
DateTimeformatter. - Default format remains
"02:00". - Backward compatible: falls back to
xHourLabelFormatterif not provided.
- Allows full control over X-axis time label formatting using a
- Example usage:
HeartRateChartConfig( xTimeLabelFormatter: (t) => '${t.hour.toString().padLeft(2, '0')}:${t.minute.toString().padLeft(2, '0')}', )
1.0.0 #
- Stable 1.0 release.
- Customizable style & config
- Health adapter (std-dev & IQR), spike-time preserved
- Interval presets & includeSpikesInBars switch
0.1.0 #
- Initial release with customizable style & config.