Grid constructor
const
Grid({
- bool containLabel = false,
- AreaStyle style = const AreaStyle(color: Colors.transparent, border: LineStyle(color: Color(0xFFCCCCCC), width: 1)),
- ToolTip? toolTip,
- SNumber leftMargin = const SNumber.number(0),
- SNumber topMargin = const SNumber.number(0),
- SNumber rightMargin = const SNumber.number(0),
- SNumber bottomMargin = const SNumber.number(0),
- SNumber? width,
- SNumber? height,
- String id = '',
- bool show = true,
Implementation
const Grid({
this.containLabel = false,
this.style = const AreaStyle(
color: Colors.transparent,
border: LineStyle(color: Color(0xFFCCCCCC), width: 1),
),
this.toolTip,
this.leftMargin = const SNumber.number(0),
this.topMargin = const SNumber.number(0),
this.rightMargin = const SNumber.number(0),
this.bottomMargin = const SNumber.number(0),
this.width,
this.height,
this.id='',
this.show=true,
});