Releases: fluttercandies/flutter-interactive-chart
Releases · fluttercandies/flutter-interactive-chart
v0.3.6
v0.3.5: Update dependency
- Update dependency: intl to ^0.19.0.
v0.3.4: Fix crash on null volume
- Fix a potential crash if volume numbers are null.
v0.3.3: Fix `onTap` event
- Fix an issue where
onTapevent was not firing.
v0.3.2: Initial zoom level
- Add
initialVisibleCandleCountparameter for setting a default zoom level. (Issue #6)
v0.3.1: Zooming with mouse wheel
- Allow web and desktop users to zoom the chart with mouse scroll wheel.
v0.3.0: Multiple trend lines
- BREAKING: Add support for multiple trend lines.
- The old
trendproperty is changed totrends, to support multiple data points perCandleData. - The old
trendLineColorproperty is changed totrendLineStyles. - Updated example project to reflect above changes.
v0.2.1: Events
- Add
onTapevent andonCandleResizeevent. - Allow
overlayInfoto return an empty object. - Update example project.
v0.2.0: Smoother zooming
- BREAKING: Organize folder structures, now you only need to import
package:interactive_chart/interactive_chart.dart - BREAKING: Change CandleData
timestampto milliseconds, you might need to multiple your data by 1000 when creating CandleData objects - Fix an issue where zooming was occasionally not smooth
- Fix an issue where overlay panel was occasionally clipped
v0.1.1: Performance improvements
- Improve performance.
- Allow
highandlowprices to be optional. - Align date/time labels towards vertical bottom.