Home
last modified time | relevance | path

Searched refs:rowStyle (Results 1 – 4 of 4) sorted by relevance

/plugin/diagramsnet/lib/js/diagramly/graphml/
DmxGraphMlCodec.js1627 var rowStyle = { variable
1634 if (parseFloat(rowStyle["startSize"]) == 0)
1636 rowStyle["fillColor"] = "none";
1637 rowStyle["swimlaneLine"] = "0";
1643 rowStyle["swimlaneFillColor"] = odd? tmpMap["laneColorAlt"] : tmpMap["laneColor"];
1644 rowStyle["fillColor"] = fillColor? fillColor : rowStyle["swimlaneFillColor"];
1655 cell.style = this.styleMap2Str(rowStyle);
1706 var rowStyle = mxUtils.clone(defRowStyle);
1707 this.mapObject(row, rowMapping, rowStyle);
1711 if (rowStyle["oddFill"])
[all …]
/plugin/diagramsnet/lib/js/grapheditor/
DGraph.js5807 …createTable = function(rowCount, colCount, w, h, title, startSize, tableStyle, rowStyle, cellStyle) argument
5814 rowStyle = (rowStyle != null) ? rowStyle : 'shape=partialRectangle;collapsible=0;dropTarget=0;' +
5821 this.createParent(this.createVertex(null, null, '', 0, 0, colCount * w, h, rowStyle),
5860 …ctionalSwimlane = function(rowCount, colCount, w, h, title, tableStyle, rowStyle, firstCellStyle, … argument
5871 rowStyle = (rowStyle != null) ? rowStyle : 'swimlane;horizontal=0;points=[[0,0.5],[1,0.5]];' +
5884 var row = this.createVertex(null, null, '', 0, t, colCount * w + t, h, rowStyle);
/plugin/xlsx2dw/packages/exceljs/
Dexceljs.js459 value: function _mergeStyle(rowStyle, colStyle, style) {
460 var numFmt = rowStyle && rowStyle.numFmt || colStyle && colStyle.numFmt;
462 var font = rowStyle && rowStyle.font || colStyle && colStyle.font;
464 var alignment = rowStyle && rowStyle.alignment || colStyle && colStyle.alignment;
466 var border = rowStyle && rowStyle.border || colStyle && colStyle.border;
468 var fill = rowStyle && rowStyle.fill || colStyle && colStyle.fill;
470 var protection = rowStyle && rowStyle.protection || colStyle && colStyle.protection;
/plugin/diagramsnet/lib/js/diagramly/
DExtensions.js7274 …var rowStyle = 'swimlane;html=1;whiteSpace=wrap;container=1;connectable=0;collapsible=0;dropTarget…
7290 var r = new mxCell('', new mxGeometry(0, y, w, rh), rowStyle);