@@ -21,27 +21,27 @@ class ChartBarDataItem extends ChartDataItem {
2121 }) : _touch = _ChartBarDataItemTouch (),
2222 _value = _ChartBarDataItemValue ();
2323
24- /// Current touch area position in while animation.
24+ /// Current touch area position during the animation.
2525 ///
2626 /// Default to Offset.zero
2727 Offset get currentTouchPos => _touch.currentPos;
2828
29- /// Current touch area size in while animation.
29+ /// Current touch area size during the animation.
3030 ///
3131 /// Default to Size.zero
3232 Size get currentTouchSize => _touch.currentSize;
3333
34- /// Current color in while animation.
34+ /// Current color during the animation.
3535 ///
3636 /// Default to Colors.transparent
3737 Color get currentValueColor => _value.currentColor;
3838
39- /// Current position in while animation.
39+ /// Current position during the animation.
4040 ///
4141 /// Default to Offset.zero
4242 Offset get currentValuePos => _value.currentPos;
4343
44- /// Current size in while animation.
44+ /// Current size during the animation.
4545 ///
4646 /// Default to Size.zero
4747 Size get currentValueSize => _value.currentSize;
@@ -129,12 +129,12 @@ class _ChartBarDataItemTouch {
129129 : _pos = ChartPositionAnimation (),
130130 _size = ChartSizeAnimation ();
131131
132- /// Current position in while animation.
132+ /// Current position during the animation.
133133 ///
134134 /// Default to Offset.zero
135135 Offset get currentPos => _pos.current;
136136
137- /// Current size in while animation.
137+ /// Current size during the animation.
138138 ///
139139 /// Default to Size.zero
140140 Size get currentSize => _size.current;
@@ -191,17 +191,17 @@ class _ChartBarDataItemValue {
191191 _pos = ChartPositionAnimation (),
192192 _size = ChartSizeAnimation ();
193193
194- /// Current color in while animation.
194+ /// Current color during the animation.
195195 ///
196196 /// Default to Colors.transparent
197197 Color get currentColor => _color.current;
198198
199- /// Current position in while animation.
199+ /// Current position during the animation.
200200 ///
201201 /// Default to Offset.zero
202202 Offset get currentPos => _pos.current;
203203
204- /// Current size in while animation.
204+ /// Current size during the animation.
205205 ///
206206 /// Default to Size.zero
207207 Size get currentSize => _size.current;
0 commit comments