layoutSize property

  1. @override
Size layoutSize

Implements Container.layoutSize. ChartTopContainer is the only one overriding layoutSize setter, to express the layoutSize is fixed chartArea

Implementation

@override
ui.Size get layoutSize => chartArea;
void layoutSize=(Size _layoutSize)
inherited

Manages the layout size during the layout process in layout. Should be only mentioned in this class, not super

Implementation

ui.Size layoutSize = ui.Size.zero;