Lines Matching refs:styleMap

564 mxGraphMlCodec.prototype.styleMap2Str = function (styleMap)  argument
569 for (var key in styleMap)
571 str += semi + key + "=" + styleMap[key];
1007 mxGraphMlCodec.prototype.handleTemplates = function (template, userTags, node, styleMap) argument
1096 styleMap["shape"] = "image";
1097 styleMap["image"] = "data:image/svg+xml," + ((window.btoa) ? btoa(svg) : Base64.encode(svg));
1101 mxGraphMlCodec.prototype.handleCompoundShape = function (node, styleMap, mlStyleObj, lbls) argument
1103 var shape = styleMap["shape"];
1110 styleMap["shadow"] = "1";
1112 styleMap["shape"] = styleMap["symbol"];
1113 delete styleMap["fillColor"];
1114 delete styleMap["strokeColor"];
1115 delete styleMap["gradientColor"];
1116 this.handleCompoundShape(node, styleMap, mlStyleObj, lbls)
1120 styleMap["shape"] = "note;size=16";
1165 }, styleMap);
1183 styleMap["shape"] = "ext;rounded=1";
1201 styleMap["double"] = "1";
1303 styleMap["shape"] = "swimlane;collapsible=0;swimlaneLine=0";
1324 }, styleMap);
1327 styleMap["swimlaneFillColor"] = styleMap["fillColor"];
1340 styleMap["startSize"] = insets[0];
1343 styleMap["horizontal"] = "0";
1347 styleMap["startSize"] = insets[1];
1354 styleMap["startSize"] = "0";
1475 styleMap["shape"] = "swimlane;collapsible=0;swimlaneLine=0";
1524 styleMap["swimlaneFillColor"] = styleMap["fillColor"];
1540 styleMap["startSize"] = th? th : tw;
1589 styleMap['shape'] = "swimlane;startSize=30;rounded=1;arcSize=5;collapsible=0";
1594 styleMap['fillColor'] = fill["color2"];
1595 styleMap['swimlaneFillColor'] = fill["color"];
1599 if (styleMap["double"] == "1")
1601 styleMap['shape'] = "doubleEllipse";
1605 styleMap['shape'] = "ellipse";
1612 styleMap["shadow"] = "1";
1823 mxGraphMlCodec.prototype.handleFixedRatio = function (node, styleMap) argument
1825 var shape = styleMap["shape"];
2048 mxGraphMlCodec.prototype.addEdgeStyle = function (edge, styleObj, styleMap) argument
2213 }, styleMap);
2238 var styleMap = {};
2326 }, styleMap);
2328 if (!styleMap["VoidLbl"] && styleMap["hasText"] != "0")
2331 lblStyles.push(styleMap);