allowDrawingOutsideViewBox property

bool? get allowDrawingOutsideViewBox

Whether to allow the rendering of this picture to exceed the PictureInfo.viewport bounds.

Caution should be used around setting this parameter to true, as it may result in greater memory usage during rasterization.

Implementation

bool? get allowDrawingOutsideViewBox => _allowDrawingOutsideViewBox;
set allowDrawingOutsideViewBox (bool? val)

Implementation

set allowDrawingOutsideViewBox(bool? val) {
  if (val == _allowDrawingOutsideViewBox) {
    return;
  }

  _allowDrawingOutsideViewBox = val;
  markNeedsPaint();
}