Lines Matching refs:bg

1669 		var bg = null;
1679 bg = graph.background;
1741 …(((redirect == null && bg != null && bg != mxConstants.NONE) ? ' style="background-color:' + bg + …
1988 var bg = this.editor.graph.background;
1990 if (transparent || bg == mxConstants.NONE)
1992 bg = null;
1997 var svgRoot = this.editor.graph.getSvg(bg, null, null, null, null, ignoreSelection);
2123 var bg = graph.background;
2127 bg = mxConstants.NONE;
2129 else if (!transparent && (bg == null || bg == mxConstants.NONE))
2131 bg = '#ffffff';
2151 '&bg=' + ((bg != null) ? bg : mxConstants.NONE) +
5104 var bg = (transparentBackground) ? null : this.editor.graph.background;
5106 if (bg == mxConstants.NONE)
5108 bg = null;
5112 if (bg == null && transparentBackground == false)
5114 bg = (keepTheme) ? this.editor.graph.defaultPageBackgroundColor : '#ffffff';
5119 var svgRoot = this.editor.graph.getSvg(bg, scale, border, noCrop,
6772 var bg = (background != null) ? background : graph.background;
6774 if (bg == mxConstants.NONE)
6776 bg = null;
6781 var svgRoot = graph.getSvg(bg, scale, border, null, null, ignoreSelection, null,
11706 var bg = graph.background;
11708 if (bg == null || bg == mxConstants.NONE)
11710 bg = this.embedExportBackground;
11722 }), null, null, true, bg, 1, this.embedExportBorder);
12301 var bg = (data.background != null) ? data.background : this.editor.graph.background;
12303 if (bg == mxConstants.NONE)
12305 bg = null;
12327 data.embedImages, bg, data.scale, data.border, data.shadow, data.keepTheme);
12336 var svgRoot = this.editor.graph.getSvg(bg, data.scale, data.border, null, null,
13891 ExportDialog.exportFile = function(editorUi, name, format, bg, s, b, dpi, grid) argument
13903 editorUi.saveData(name, 'svg', mxUtils.getXml(graph.getSvg(bg, s, b)), 'image/svg+xml');
13920 editorUi.exportImage(s, bg == null || bg == 'none', true,
13949 '&bg=' + ((bg != null) ? bg : 'none') + '&w=' + w + '&h=' + h +