Lines Matching refs:graphStyle
6054 var updateCells = mxUtils.bind(this, function(styles, graphStyle) argument
6068 graph.updateCellStyles('labelBackgroundColor', (graphStyle != null) ?
6069 graphStyle.background : null, [cells[i]]);
6112 var applyStyle = mxUtils.bind(this, function(style, result, cell, graphStyle, theGraph) argument
6121 var bg = (graphStyle != null) ? graphStyle.background : null;
6178 …var createPreview = mxUtils.bind(this, function(commonStyle, vertexStyle, edgeStyle, graphStyle, c… argument
6214 applyStyle(commonStyle, result, cell, graphStyle, graph2);
6215 applyStyle(appliedStyle, result, cell, graphStyle, graph2);
6252 var addEntry = mxUtils.bind(this, function(commonStyle, vertexStyle, edgeStyle, graphStyle, index) argument
6269 if (graphStyle != null && graphStyle.background != null)
6271 panel.style.backgroundColor = graphStyle.background;
6274 createPreview(commonStyle, vertexStyle, edgeStyle, graphStyle, panel);
6324 updateCells(defaultStyles, graphStyle);
6326 var change = new ChangePageSetup(ui, (graphStyle != null) ? graphStyle.background : null);
6330 model.execute(new ChangeGridColor(ui, (graphStyle != null && graphStyle.gridColor != null) ?
6331 graphStyle.gridColor : graph.view.defaultGridColor));
6345 graph.background = (graphStyle != null) ? graphStyle.background : null;
6346 graph.view.gridColor = (graphStyle != null && graphStyle.gridColor != null) ?
6347 graphStyle.gridColor : graph.view.defaultGridColor;
6363 applyStyle(commonStyle, result, cell, graphStyle);
6364 applyStyle(appliedStyle, result, cell, graphStyle);