@@ -353,7 +353,7 @@ class RectShape extends IntervalShape {
353
353
) {
354
354
assert (item.shape is RectShape );
355
355
356
- final style = getPaintStyle (item, false , 0 , coord.region);
356
+ final style = getPaintStyle (item, false , 0 , coord.region, null );
357
357
358
358
return RectElement (rect: rect, borderRadius: borderRadius, style: style, tag: item.tag);
359
359
}
@@ -387,7 +387,7 @@ class RectShape extends IntervalShape {
387
387
) {
388
388
assert (item.shape is RectShape );
389
389
390
- final style = getPaintStyle (item, false , 0 , coord.region);
390
+ final style = getPaintStyle (item, false , 0 , coord.region, null );
391
391
392
392
return SectorElement (
393
393
center: coord.center,
@@ -480,7 +480,7 @@ class FunnelShape extends IntervalShape {
480
480
coord.convert (Offset (bandStart, position[0 ].dy)),
481
481
];
482
482
rst.add (PolygonElement (
483
- points: corners, style: getPaintStyle (item, false , 0 , coord.region), tag: item.tag));
483
+ points: corners, style: getPaintStyle (item, false , 0 , coord.region, null ), tag: item.tag));
484
484
// Middle items.
485
485
for (var i = 1 ; i < group.length - 1 ; i++ ) {
486
486
item = group[i];
@@ -496,7 +496,7 @@ class FunnelShape extends IntervalShape {
496
496
coord.convert (Offset (bandStart, position[0 ].dy)),
497
497
];
498
498
rst.add (PolygonElement (
499
- points: corners, style: getPaintStyle (item, false , 0 , coord.region), tag: item.tag));
499
+ points: corners, style: getPaintStyle (item, false , 0 , coord.region, null ), tag: item.tag));
500
500
}
501
501
// Last item.
502
502
item = group.last;
@@ -513,7 +513,7 @@ class FunnelShape extends IntervalShape {
513
513
coord.convert (Offset (bandStart, position[0 ].dy)),
514
514
];
515
515
rst.add (PolygonElement (
516
- points: corners, style: getPaintStyle (item, false , 0 , coord.region), tag: item.tag));
516
+ points: corners, style: getPaintStyle (item, false , 0 , coord.region, null ), tag: item.tag));
517
517
518
518
return rst;
519
519
}
0 commit comments