Home
last modified time | relevance | path

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

/plugin/diagramsnet/lib/js/diagramly/graphml/
H A DmxGraphMlCodec.js1627 var rowStyle = { class in mxGraphMlCodec.addTbl2Rows
1644 rowStyle["fillColor"] = fillColor? fillColor : rowStyle["swimlaneFillColor"];
1711 if (rowStyle["oddFill"])
1712 rowStyle["fillColor"] = rowStyle["oddFill"];
1714 if (rowStyle["oddLaneFill"])
1715 rowStyle["swimlaneFillColor"] = rowStyle["oddLaneFill"];
1719 if (rowStyle["evenFill"])
1720 rowStyle["fillColor"] = rowStyle["evenFill"];
1722 if (rowStyle["evenLaneFill"])
1723 rowStyle["swimlaneFillColor"] = rowStyle["evenLaneFill"];
[all …]
/plugin/diagramsnet/lib/js/grapheditor/
H A 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/
H A 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/
H A 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);