Lines Matching refs:width

118 	    	width:150,  property in EditorUi.defaultMermaidConfig.sequence
530 canvas.width = canvas.height = 1;
630 width: Math.round(size / 3), // The line thickness
2085 if (bounds.width * bounds.height > MAX_AREA || data.length > MAX_REQUEST_SIZE)
2454 curr.width += val;
3214 btn.style.width = '14px';
3337 cells, bounds.width, bounds.height, title || '', true, false, false));
3340 var entry = {xml: xml, w: bounds.width, h: bounds.height};
3368 bounds.width /= s;
3528 addCells(cells, new mxRectangle(0, 0, size.width, size.height), evt);
3980 usersSelect.style.width = '200px';
4386 dlg.textarea.style.width = '600px';
4868 this.exportDialog.style.width = '50px';
4884 width: 5, // The line thickness
4901 this.exportDialog.style.width = 'auto';
5274 editSelect.style.width = '120px';
5352 linkSelect.style.width = '100px';
5411 linkButton.style.width = '22px';
5706 zoomInput.style.width = '60px';
5758 …EditorUi.prototype.showPublishLinkDialog = function(title, hideShare, width, height, fn, showFrame… argument
5825 if (width != null || height != null)
5833 widthInput.style.width = '50px';
5845 heightInput.style.width = '50px';
5955 zoomInput.style.width = '60px';
5965 borderInput.style.width = '60px';
6019 zoomInput.style.width = '60px';
6029 borderInput.style.width = '60px';
6332 atts = ' width="' + Math.round(bounds.width) + '" height="' + Math.round(bounds.height) + '"';
6354 if (bounds.width * bounds.height <= MAX_AREA && data.length <= MAX_REQUEST_SIZE)
6360 size = '&w=' + Math.round(2 * bounds.width) +
7736 var w = img.width;
7907 var s = Math.min(1, Math.min(this.maxImageSize / img.width, this.maxImageSize / img.height));
7908 var w = Math.round(img.width * s);
7993 if (this.maxTextWidth > 0 && cell.geometry.width > this.maxTextWidth)
7996 cell.geometry.width = size.width;
8007 cell.geometry.width += graph.gridSize;
8604 var w = svgRoot.getAttribute('width');
9629 var w = Math.max(1, img.width);
9694 this.styleInput.style.width = '98%';
9905 var w = Math.max(1, img.width);
10053 textInput.style.width = '1px';
11093 hl.style.width = Math.max(0, w - 3) + 'px';
12209 }), data.width, null, data.background, mxUtils.bind(this, function()
12463 this.diagramContainer.style.width = data.rect.width + 'px';
12888 var width = 'auto';
13010 width = value;
13225 var widthValue = (width.charAt(0) == '@') ? cell.getAttribute(width.substring(1)) : null;
13229 cell.geometry.width = parseFloat(cell.getAttribute(width.substring(1)));
13233 cell.geometry.width = (width == 'auto' || widthValue == 'auto') ?
13234 size.width + padding : parseFloat(width);
13281 … var widthValue = (width.charAt(0) == '@') ? parents[i].getAttribute(width.substring(1)) : null;
13284 if ((width == 'auto' || widthValue == 'auto') &&
13440 if (width == 'auto')
13442 geo.width = Math.round(graph.snap(geo.width));
13909 var w = Math.floor(bounds.width * s / graph.view.scale);
14907 …EditorUi.prototype.exportToCanvas = function(callback, width, imageCache, background, error, limit… argument
14911 return this.editor.exportToCanvas(callback, width, imageCache, background, error, limitHeight,
15846 cancelBtn.style.width = '40%';
15872 okBtn.style.width = '40%';