Hi!
Current API allows to export to SVG using $.model.renderViewToSVG(view, filePath, setViewBox)
Would it be possible to add viewBoxBounds optional parameter to enter min_x, min_y, width and height as seen in GUI?

For example:
var viewBoxBounds = {min_x: 0, min_y: 0, width: 1000, height: 495};
$.model.renderViewToSVG(view, "myView.svg", "true", viewBoxBounds);
Thanks, David