Exporting the drawing as an SVG also generates paths for the background grid if the background style is set to grid. Can this be disabled somehow?
const editor = new Editor(canvas, {
minZoom: 1,
maxZoom: 20,
});
toolbar = makeEdgeToolbar(editor);
editor.dispatch(
editor.setBackgroundStyle({
color: Color4.orange,
type: BackgroundComponentBackgroundType.Grid,
autoresize: true,
}),
false
);
//draw something into the editor
editor.toSVG();
//the resulting SVG also includes the grid.
Exporting the drawing as an SVG also generates paths for the background grid if the background style is set to grid. Can this be disabled somehow?