Lines Matching refs:cell

4618 	function addAllStyles(style, properties, action, cell, noLblStyle)  argument
4632 addStyle(mxConstants.STYLE_FONTSIZE, style, properties, action, cell) +
4633 addStyle(mxConstants.STYLE_FONTFAMILY, style, properties, action, cell) +
4634 addStyle(mxConstants.STYLE_FONTCOLOR, style, properties, action, cell) +
4635 addStyle(mxConstants.STYLE_FONTSTYLE, style, properties, action, cell) +
4636 addStyle(mxConstants.STYLE_ALIGN, style, properties, action, cell) +
4637 addStyle(mxConstants.STYLE_SPACING_LEFT, style, properties, action, cell) +
4638 addStyle(mxConstants.STYLE_SPACING_RIGHT, style, properties, action, cell) +
4639 addStyle(mxConstants.STYLE_SPACING_TOP, style, properties, action, cell) +
4640 addStyle(mxConstants.STYLE_SPACING_BOTTOM, style, properties, action, cell)
4642 addStyle(mxConstants.STYLE_ALIGN + 'Global', style, properties, action, cell) +
4643 addStyle(mxConstants.STYLE_SPACING, style, properties, action, cell) +
4644 addStyle(mxConstants.STYLE_VERTICAL_ALIGN, style, properties, action, cell) +
4645 addStyle(mxConstants.STYLE_STROKECOLOR, style, properties, action, cell) +
4646 addStyle(mxConstants.STYLE_OPACITY, style, properties, action, cell) +
4647 addStyle(mxConstants.STYLE_ROUNDED, style, properties, action, cell) +
4648 addStyle(mxConstants.STYLE_ROTATION, style, properties, action, cell) +
4649 addStyle(mxConstants.STYLE_FLIPH, style, properties, action, cell) +
4650 addStyle(mxConstants.STYLE_FLIPV, style, properties, action, cell) +
4651 addStyle(mxConstants.STYLE_SHADOW, style, properties, action, cell) +
4652 addStyle(mxConstants.STYLE_FILLCOLOR, style, properties, action, cell) +
4653 addStyle(mxConstants.STYLE_DASHED, style, properties, action, cell) +
4654 addStyle(mxConstants.STYLE_STROKEWIDTH, style, properties, action, cell) +
4655 addStyle(mxConstants.STYLE_IMAGE, style, properties, action, cell);
4661 function addStyle(key, style, properties, action, cell) argument
4707 return getOpacity(properties, action, cell);
4710 return getRounded(properties, action, cell);
4713 return getRotation(properties, action, cell);
5183 function getOpacity(properties, action, cell) argument
5195 if(!cell.style.includes('strokeOpacity'))
5210 if(!cell.style.includes('fillOpacity'))
5220 function getRounded(properties, action, cell) argument
5222 if (!cell.edge && !cell.style.includes('rounded'))
5241 function getRotation(properties, action, cell) argument
5257 cell.geometry.rotate90();
5258 cell.geometry.isRotated = true;
5264 cell.geometry.rotate90();
5487 function addCustomData(cell, p, graph) argument
5491 graph.setAttributeForCell(cell, 'link', getLink(p.Link[0]));
5494 replacePlaceholders(cell, graph);
5506 setAttributeForCell(cell, key, data.Value, graph);
5521 function replacePlaceholders(cell, graph) argument
5524 var str = graph.convertValueToString(cell);
5582 graph.setAttributeForCell(cell, 'label', result.join(''));
5583 graph.setAttributeForCell(cell, 'placeholders', '1');
5588 function setAttributeForCell(cell, key, value, graph) argument
5594 while (graph.getAttributeForCell(cell, currentKey) != null)
5600 graph.setAttributeForCell(cell, currentKey, (value != null) ? value : '');
5603 function updateCell(cell, obj, graph, source, target, ignoreLabel) argument
5613 cell.style += s + ';';
5615 else if (!cell.edge)
5626 cell.value = (!ignoreLabel) ? convertText(p) : '';
5627 cell.style += addAllStyles(cell.style, p, a, cell, isLastLblHTML);
5629 if (!cell.style.includes('strokeColor'))
5631 cell.style += getStrokeColor(p, a);
5634 addCustomData(cell, p, graph);
5638 var geo = cell.geometry;
5641 cell.insert(title);
5646 if (cell.edge)
5650 cell.style += 'rounded=1;arcSize=' + p.Rounding + ';';
5654 cell.style += 'rounded=0;';
5662 cell.geometry.points = [];
5666 cell.geometry.points.push(new mxPoint(
5673 cell.style += 'edgeStyle=orthogonalEdgeStyle;';
5677 cell.style += 'edgeStyle=orthogonalEdgeStyle;';
5681 cell.style += 'curved=1;';
5688 cell.style += 'jumpStyle=arc;';
5698 cell.style += 'startArrow=' + startStyle + ';';
5718 cell.style += 'endArrow=' + endStyle + ';';
5736 cell.geometry.points = [];
5742 cell.geometry.points.push(new mxPoint(
5757 if ((cell.geometry.points == null || cell.geometry.points.length == 0) &&
5772 cell.geometry.points = [p1, p2];
5783 p1 = updateEndpoint(cell, p.Endpoint1, true, implicitY, null, source);
5799 p2 = updateEndpoint(cell, p.Endpoint2, false, implicitY, null, target);
5818 setAttributeForCell(cell, 'lucidchartObjectId', obj.id, graph);
6047 function updateEndpoint(cell, endpoint, source, ignoreX, ignoreY, endCell) argument
6066 cell.style += ((!ignoreX) ? ((source) ? 'exitX' : 'entryX') + '=' + endpoint.LinkX + ';' : '') +
6815 function addRouterEdge(x, y, edge, select, graph, cells, v, cell) argument
6823 cell.insertEdge(e, false);
9642 …var cell = new mxCell('', new mxGeometry(x, y, cw, ch), 'shape=partialRectangle;html=1;whiteSpace=…
9653 cell.vertex = true;
9654 cell.value = convertText(cellLbl);
9655 cell.style +=
9656 addAllStyles(cell.style, p, a, cell, isLastLblHTML) +
9661 getTextAlignment(cellLbl, cell) +
9669 v.insert(cell);
9998 …var cell = new mxCell('', new mxGeometry(w * 0.25, h * 0.25, w * 0.5, h * 0.5), 'ellipse;html=1;st…
9999 cell.vertex = true;
10000 v.insert(cell);
10001 var cells = [cell];
10002 cell.style += getFillColor(p, a);
10008 addRouterEdge(w * 0.5, 0, edge, select, graph, cells, v, cell);
10009 addRouterEdge(w * 0.855, h * 0.145, edge, select, graph, cells, v, cell);
10010 addRouterEdge(w, h * 0.5, edge, select, graph, cells, v, cell);
10011 addRouterEdge(w * 0.855, h * 0.855, edge, select, graph, cells, v, cell);
10012 addRouterEdge(w * 0.5, h, edge, select, graph, cells, v, cell);
10013 addRouterEdge(w * 0.145, h * 0.855, edge, select, graph, cells, v, cell);
10014 addRouterEdge(0, h * 0.5, edge, select, graph, cells, v, cell);
10015 addRouterEdge(w * 0.145, h * 0.145, edge, select, graph, cells, v, cell);
10021 …var cell = new mxCell('', new mxGeometry(0, h * 0.5 - 10, w, 20), 'shape=mxgraph.networks.bus;grad…
10022 cell.vertex = true;
10023 v.insert(cell);
10024 var cells = [cell];
10030 var cells = [cell];
10035 addRouterEdge(stepX * 0.5 + i * stepX, 0, edge, select, graph, cells, v, cell);
10042 addRouterEdge(stepX * 0.5 + i * stepX, h, edge, select, graph, cells, v, cell);
10104 addFloatingEdge(w * 0.15, h * 0.25, w * 0.85, h * 0.25, edge, select, graph, cells, v, cell);
10226 addFloatingEdge(0, h * 0.5, w * 0.4, h * 0.5, edge, select, graph, cells, v, cell);
10237 addFloatingEdge(w * 0.05, h * 0.5, w * 0.85, h * 0.5, edge1, select, graph, cells, v, cell);
10242 addFloatingEdge(w * 0.05, h * 0.5, w * 0.85, h * 0.15, edge2, select, graph, cells, v, cell);
10247 addFloatingEdge(w * 0.05, h * 0.5, w * 0.85, h * 0.85, edge3, select, graph, cells, v, cell);
10260 addFloatingEdge(w * 0.05, h * 0.5, w * 0.95, h * 0.5, edge1, select, graph, cells, v, cell);
10266 addFloatingEdge(w * 0.3, h * 0.1, w * 0.3, h * 0.5, edge2, select, graph, cells, v, cell);
10272 addFloatingEdge(w * 0.7, h * 0.1, w * 0.7, h * 0.5, edge3, select, graph, cells, v, cell);
10278 addFloatingEdge(w * 0.5, h * 0.5, w * 0.5, h * 0.9, edge4, select, graph, cells, v, cell);
10296 addFloatingEdge(w * 0.45, h * 0.33, w * 0.8, h * 0.33, edge1, select, graph, cells, v, cell);
10307 addFloatingEdge(w * 0.55, h * 0.67, w * 0.2, h * 0.67, edge2, select, graph, cells, v, cell);
10545 addFloatingEdge(w * 0.05, h * 0.5, w * 0.6, h * 0.25, edge1, select, graph, cells, v, cell);
10550 addFloatingEdge(w * 0.05, h * 0.5, w * 0.6, h * 0.75, edge2, select, graph, cells, v, cell);
10801 addFloatingEdge(0, h * 0.5, w * 0.65, h * 0.5, edge1, select, graph, cells, v, cell);
10813 …atingEdge(w * 0.65, h * 0.5, w * 0.96, (i + 0.5) * itemH, edge2[i], select, graph, cells, v, cell);
10851 …ngEdge(0, (i + 0.5) * itemH, w * 0.96, (i + 0.5) * itemH, edge2[i], select, graph, cells, v, cell);
10932 addFloatingEdge(0, 0, 0, h * 0.2, edge1, select, graph, cells, v, cell);
10940 addFloatingEdge(w, h * 0.67, w, h, edge2, select, graph, cells, v, cell);
10952 addFloatingEdge(0, 0, 0, h * 0.33, edge1, select, graph, cells, v, cell);
10960 addFloatingEdge(w, h * 0.8, w, h, edge2, select, graph, cells, v, cell);
10971 addFloatingEdge(w * 0.2, h * 0.5, w * 0.8, h * 0.5, edge3, select, graph, cells, v, cell);
13188 var cell = new mxCell('', new mxGeometry(cx, cy, w, h), 'shape=' + shape.shapeStencil + ';');
13216 cell.style += addAllStyles(cell.style, shape, a, cell, isLastLblHTML);
13222 cell.style += addAllStyles(cell.style, p, a, cell, isLastLblHTML);
13224 cell.vertex = true;
13225 cell.geometry.relative = true;
13226 v.insert(cell);
13726 var cell = new mxCell(lbl, new mxGeometry(0, 0, size.width + marginW, size.height + marginH),
13728 cell.vertex = true;
13729 lookup[id] = cell;
13730 graph.addCell(cell, chartGroup);