File tree 4 files changed +13
-7
lines changed
4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.2.1
2
+
3
+ * Add ` onTap ` event and ` onCandleResize ` event.
4
+ * Allow ` overlayInfo ` to return an empty object.
5
+ * Update example project.
6
+
1
7
## 0.2.0
2
8
3
- * BREAKING: Organize folder structures, now you only need to import ` package:interactive_chart/interactive_chart.dart `
4
- * BREAKING: Change CandleData ` timestamp ` to milliseconds, you might need to multiple your data by 1000 when creating CandleData objects
5
- * Fix an issue where zooming was occasionally not smooth
6
- * Fix an issue where overlay panel was occasionally clipped
9
+ * BREAKING: Organize folder structures, now you only need to import ` package:interactive_chart/interactive_chart.dart ` .
10
+ * BREAKING: Change CandleData ` timestamp ` to milliseconds, you might need to multiple your data by 1000 when creating CandleData objects.
11
+ * Fix an issue where zooming was occasionally not smooth.
12
+ * Fix an issue where overlay panel was occasionally clipped.
7
13
8
14
## 0.1.1
9
15
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class _MyAppState extends State<MyApp> {
72
72
// timeLabel: (timestamp, visibleDataCount) => "📅",
73
73
// priceLabel: (price) => "${price.round()} 💎",
74
74
/** Customize overlay (tap and hold to see it)
75
- ** Or return a blank object to disable it . */
75
+ ** Or return an empty object to disable overlay info . */
76
76
// overlayInfo: (candle) => {
77
77
// "💎": "🤚 ",
78
78
// "Hi": "${candle.high?.toStringAsFixed(2)}",
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ packages:
73
73
path: ".."
74
74
relative: true
75
75
source: path
76
- version: "0.2.0 "
76
+ version: "0.2.1 "
77
77
intl:
78
78
dependency: transitive
79
79
description:
Original file line number Diff line number Diff line change 1
1
name : interactive_chart
2
2
description : A candlestick chart that supports hand gestures such as pinch-to-zoom and panning.
3
- version : 0.2.0
3
+ version : 0.2.1
4
4
homepage : https://github.com/h65wang/flutter-interactive-chart
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments