File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,17 @@ class BlinkingTickPainter<T extends BlinkingTickIndicator>
26
26
double ? dotX;
27
27
28
28
if (series.previousObject == null ) {
29
- animatedValue = series.quote ;
29
+ animatedValue = series.value ;
30
30
if (series.epoch != null ) {
31
31
dotX = epochToX (series.epoch! );
32
32
}
33
33
} else {
34
34
final BarrierObject previousBarrier = series.previousObject! ;
35
- animatedValue = series.quote ;
35
+ animatedValue = series.value ;
36
36
37
37
animatedValue = ui.lerpDouble (
38
- previousBarrier.quote ,
39
- series.quote ,
38
+ previousBarrier.value ,
39
+ series.value ,
40
40
animationInfo.currentTickPercent,
41
41
);
42
42
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class TimeIntervalPainter<T extends TimeIntervalIndicator>
32
32
..strokeWidth = 1
33
33
..color = style.color;
34
34
35
- double y = quoteToY (series.quote as double );
35
+ double y = quoteToY (series.value as double );
36
36
37
37
final double labelHalfHeight = style.labelHeight / 2 ;
38
38
@@ -50,6 +50,7 @@ class TimeIntervalPainter<T extends TimeIntervalIndicator>
50
50
//set Y axis below the marker
51
51
y = y + style.labelHeight;
52
52
53
+
53
54
// creating labelArea rectangle
54
55
final Rect labelArea = Rect .fromCenter (
55
56
center: Offset (
You can’t perform that action at this time.
0 commit comments