2.1.0.1 release

development
Gaudenz Alder 2013-07-12 08:09:46 +01:00
parent 8602a11f0f
commit 4fe3144a91
894 changed files with 5637 additions and 5133 deletions

View File

@ -1,3 +1,11 @@
12-JUL-2013: 2.1.0.1
- Ignores overlapping points in mxConnector, mxPolyline [JavaScript]
- Removes mxClient.CSS_PREFIX, adds mxUtils.setPrefixedStyle [JavaScript]
- Uses mxText base spacing, getLabelBounds hook in mxCellEditor [JavaScript]
- Fixes scaling of dash array in mxSvgCanvas2D [JavaScript]
- Adds hoverstyle.html example [JavaScript]
28-JUN-2013: 2.1.0.0
- Fixes mxDragSource inner mouseDown call for overriding [JavaScript]
@ -58,6 +66,11 @@
- Adds mxClient.VML_PREFIX, OFFICE_PREFIX, CSS_PREFIX [JavaScript]
- Adds dashed option to mxCellHighlight [JavaScript]
--
12-JUL-2013: 1.13.0.3
- Fixes possible cached terminals in mxParallelEdgeLayout [JavaScript]
- Fixes possible connection to child in mxEdgeHandler [JavaScript]
- Fixes possible infinite loop in mxGraphView.invalidate [JavaScript]
- Fixes mxEditor.showOutline for IE8 in standards mode [JavaScript]
- Fixes value ignored after paste from context menu in mxCellEditor [JavaScript]

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,23 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Content><div class="CClass"><div class=CTopic id=MainTopic><h1 class=CTitle><a name="mxParallelEdgeLayout"></a>mxParallelEdgeLayout</h1><div class=CBody><p>Extends <a href="mxGraphLayout-js.html#mxGraphLayout" class=LClass id=link9 onMouseOver="ShowTip(event, 'tt1', 'link9')" onMouseOut="HideTip('tt1')">mxGraphLayout</a> for arranging parallel edges.&nbsp; This layout works on edges for all pairs of vertices where there is more than one edge connecting the latter.</p><h4 class=CHeading>Example</h4><blockquote><pre class="prettyprint">var layout = new mxParallelEdgeLayout(graph);
layout.execute(graph.getDefaultParent());</pre></blockquote><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxParallelEdgeLayout" >mxParallelEdgeLayout</a></td><td class=SDescription>Extends <a href="mxGraphLayout-js.html#mxGraphLayout" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxGraphLayout</a> for arranging parallel edges. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxParallelEdgeLayout.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.mxCompactTreeLayout" >mxCompactTreeLayout</a></td><td class=SDescription>Constructs a new fast organic layout for the specified graph.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxParallelEdgeLayout.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.spacing" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">spacing</a></td><td class=SDescription>Defines the spacing between the parallels. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxParallelEdgeLayout.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.execute" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">execute</a></td><td class=SDescription>Implements <a href="mxGraphLayout-js.html#mxGraphLayout.execute" class=LFunction id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">mxGraphLayout.execute</a>.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxParallelEdgeLayout.findParallels" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">findParallels</a></td><td class=SDescription>Finds the parallel edges in the given parent.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.getEdgeId" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">getEdgeId</a></td><td class=SDescription>Returns a unique ID for the given edge. </td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxParallelEdgeLayout.layout" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">layout</a></td><td class=SDescription>Lays out the parallel edges in the given array.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.route" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">route</a></td><td class=SDescription>Routes the given edge via the given point.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
layout.execute(graph.getDefaultParent());</pre></blockquote><p>To run the layout for the parallel edges of a changed edge only, the following code can be used.</p><blockquote><pre class="prettyprint">var layout = new mxParallelEdgeLayout(graph);
graph.addListener(mxEvent.CELL_CONNECTED, function(sender, evt)
{
var model = graph.getModel();
var edge = evt.getProperty('edge');
var src = model.getTerminal(edge, true);
var trg = model.getTerminal(edge, false);
layout.isEdgeIgnored = function(edge2)
{
var src2 = model.getTerminal(edge2, true);
var trg2 = model.getTerminal(edge2, false);
return !(model.isEdge(edge2) &amp;&amp; ((src == src2 &amp;&amp; trg == trg2) || (src == trg2 &amp;&amp; trg == src2)));
};
};</pre></blockquote><!--START_ND_SUMMARY--><div class=Summary><div class=STitle>Summary</div><div class=SBorder><table border=0 cellspacing=0 cellpadding=0 class=STable><tr class="SMain"><td class=SEntry><a href="#mxParallelEdgeLayout" >mxParallelEdgeLayout</a></td><td class=SDescription>Extends <a href="mxGraphLayout-js.html#mxGraphLayout" class=LClass id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">mxGraphLayout</a> for arranging parallel edges. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxParallelEdgeLayout.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.mxCompactTreeLayout" >mxCompactTreeLayout</a></td><td class=SDescription>Constructs a new fast organic layout for the specified graph.</td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxParallelEdgeLayout.Variables" >Variables</a></td><td class=SDescription></td></tr><tr class="SVariable SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.spacing" id=link2 onMouseOver="ShowTip(event, 'tt2', 'link2')" onMouseOut="HideTip('tt2')">spacing</a></td><td class=SDescription>Defines the spacing between the parallels. </td></tr><tr class="SGroup SIndent1"><td class=SEntry><a href="#mxParallelEdgeLayout.Functions" >Functions</a></td><td class=SDescription></td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.execute" id=link3 onMouseOver="ShowTip(event, 'tt3', 'link3')" onMouseOut="HideTip('tt3')">execute</a></td><td class=SDescription>Implements <a href="mxGraphLayout-js.html#mxGraphLayout.execute" class=LFunction id=link4 onMouseOver="ShowTip(event, 'tt4', 'link4')" onMouseOut="HideTip('tt4')">mxGraphLayout.execute</a>.</td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxParallelEdgeLayout.findParallels" id=link5 onMouseOver="ShowTip(event, 'tt5', 'link5')" onMouseOut="HideTip('tt5')">findParallels</a></td><td class=SDescription>Finds the parallel edges in the given parent.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.getEdgeId" id=link6 onMouseOver="ShowTip(event, 'tt6', 'link6')" onMouseOut="HideTip('tt6')">getEdgeId</a></td><td class=SDescription>Returns a unique ID for the given edge. </td></tr><tr class="SFunction SIndent2"><td class=SEntry><a href="#mxParallelEdgeLayout.layout" id=link7 onMouseOver="ShowTip(event, 'tt7', 'link7')" onMouseOut="HideTip('tt7')">layout</a></td><td class=SDescription>Lays out the parallel edges in the given array.</td></tr><tr class="SFunction SIndent2 SMarked"><td class=SEntry><a href="#mxParallelEdgeLayout.route" id=link8 onMouseOver="ShowTip(event, 'tt8', 'link8')" onMouseOut="HideTip('tt8')">route</a></td><td class=SDescription>Routes the given edge via the given point.</td></tr></table></div></div><!--END_ND_SUMMARY--></div></div></div>
<div class="CGroup"><div class=CTopic><h3 class=CTitle><a name="mxParallelEdgeLayout.Functions"></a>Functions</h3></div></div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=IPageTitle>Class Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; A &middot; B &middot; C &middot; D &middot; E &middot; F &middot; G &middot; H &middot; I &middot; J &middot; K &middot; L &middot; <a href="Classes.html#M">M</a> &middot; N &middot; O &middot; P &middot; Q &middot; R &middot; S &middot; T &middot; U &middot; V &middot; <a href="#W">W</a> &middot; X &middot; Y &middot; Z</div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="W"></a>W</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>WeightedCellSorter</span><div class=ISubIndex><a href="../files/layout/hierarchical/stage/mxCoordinateAssignment-js.html#WeightedCellSorter" id=link149 onMouseOver="ShowTip(event, 'tt148', 'link149')" onMouseOut="HideTip('tt148')" class=IFile>layout/<wbr>hierarchical/<wbr>stage/<wbr>mxCoordinateAssignment.js</a><a href="../files/layout/mxCompactTreeLayout-js.html#WeightedCellSorter" id=link150 onMouseOver="ShowTip(event, 'tt148', 'link150')" onMouseOut="HideTip('tt148')" class=IFile>layout/<wbr>mxCompactTreeLayout.js</a></div></td></tr></table>
<div id=Index><div class=IPageTitle>Class Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; A &middot; B &middot; C &middot; D &middot; E &middot; F &middot; G &middot; H &middot; I &middot; J &middot; K &middot; L &middot; <a href="Classes.html#M">M</a> &middot; N &middot; O &middot; P &middot; Q &middot; R &middot; S &middot; T &middot; U &middot; V &middot; <a href="#W">W</a> &middot; X &middot; Y &middot; Z</div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="W"></a>W</td><td></td></tr><tr><td class=ISymbolPrefix id=IOnlySymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>WeightedCellSorter</span><div class=ISubIndex><a href="../files/layout/hierarchical/stage/mxCoordinateAssignment-js.html#WeightedCellSorter" id=link148 onMouseOver="ShowTip(event, 'tt147', 'link148')" onMouseOut="HideTip('tt147')" class=IFile>layout/<wbr>hierarchical/<wbr>stage/<wbr>mxCoordinateAssignment.js</a><a href="../files/layout/mxCompactTreeLayout-js.html#WeightedCellSorter" id=link149 onMouseOver="ShowTip(event, 'tt147', 'link149')" onMouseOut="HideTip('tt147')" class=IFile>layout/<wbr>mxCompactTreeLayout.js</a></div></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt148"><div class=CClass>A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges. </div></div><!--END_ND_TOOLTIPS-->
<div class=CToolTip id="tt147"><div class=CClass>A utility class used to track cells whilst sorting occurs on the weighted sum of their connected edges. </div></div><!--END_ND_TOOLTIPS-->
</div><!--Index-->

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,9 +11,9 @@ if (browserType) {document.write("<div class=" + browserType + ">");if (browserV
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="General10.html#J">J</a> &middot; <a href="General10.html#K">K</a> &middot; <a href="General10.html#L">L</a> &middot; <a href="General11.html#M">M</a> &middot; <a href="General12.html#N">N</a> &middot; <a href="General12.html#O">O</a> &middot; <a href="General13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="General15.html#R">R</a> &middot; <a href="General16.html#S">S</a> &middot; <a href="General17.html#T">T</a> &middot; <a href="General18.html#U">U</a> &middot; <a href="General19.html#V">V</a> &middot; <a href="General20.html#W">W</a> &middot; <a href="General20.html#X">X</a> &middot; <a href="General20.html#Y">Y</a> &middot; <a href="General20.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2414 onMouseOver="ShowTip(event, 'tt2405', 'link2414')" onMouseOut="HideTip('tt2405')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2415 onMouseOver="ShowTip(event, 'tt2406', 'link2415')" onMouseOut="HideTip('tt2406')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2416 onMouseOver="ShowTip(event, 'tt2407', 'link2416')" onMouseOut="HideTip('tt2407')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2417 onMouseOver="ShowTip(event, 'tt2408', 'link2417')" onMouseOut="HideTip('tt2408')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar>$#! &middot; 0-9 &middot; <a href="General.html#A">A</a> &middot; <a href="General2.html#B">B</a> &middot; <a href="General3.html#C">C</a> &middot; <a href="General4.html#D">D</a> &middot; <a href="General5.html#E">E</a> &middot; <a href="General6.html#F">F</a> &middot; <a href="General7.html#G">G</a> &middot; <a href="General8.html#H">H</a> &middot; <a href="General9.html#I">I</a> &middot; <a href="General10.html#J">J</a> &middot; <a href="General10.html#K">K</a> &middot; <a href="General10.html#L">L</a> &middot; <a href="General11.html#M">M</a> &middot; <a href="General12.html#N">N</a> &middot; <a href="General12.html#O">O</a> &middot; <a href="General13.html#P">P</a> &middot; <a href="#Q">Q</a> &middot; <a href="General15.html#R">R</a> &middot; <a href="General16.html#S">S</a> &middot; <a href="General17.html#T">T</a> &middot; <a href="General18.html#U">U</a> &middot; <a href="General19.html#V">V</a> &middot; <a href="General20.html#W">W</a> &middot; <a href="General20.html#X">X</a> &middot; <a href="General20.html#Y">Y</a> &middot; <a href="General20.html#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="Q"></a>Q</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix>&nbsp;</td><td class=IEntry><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadOp" id=link2412 onMouseOver="ShowTip(event, 'tt2403', 'link2412')" onMouseOut="HideTip('tt2403')" class=ISymbol>quadOp</a>, <span class=IParent>mxAbstractCanvas2D</span></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix>&nbsp;</td><td class=IEntry><span class=ISymbol>quadTo</span><div class=ISubIndex><a href="../files/util/mxAbstractCanvas2D-js.html#mxAbstractCanvas2D.quadTo" id=link2413 onMouseOver="ShowTip(event, 'tt2404', 'link2413')" onMouseOut="HideTip('tt2404')" class=IParent>mxAbstractCanvas2D</a><a href="../files/util/mxVmlCanvas2D-js.html#mxVmlCanvas2D.quadTo" id=link2414 onMouseOver="ShowTip(event, 'tt2405', 'link2414')" onMouseOut="HideTip('tt2405')" class=IParent>mxVmlCanvas2D</a><a href="../files/util/mxXmlCanvas2D-js.html#mxXmlCanvas2D.quadTo" id=link2415 onMouseOver="ShowTip(event, 'tt2406', 'link2415')" onMouseOut="HideTip('tt2406')" class=IParent>mxXmlCanvas2D</a></div></td></tr></table>
<!--START_ND_TOOLTIPS-->
<div class=CToolTip id="tt2405"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxAbstractCanvas2D.prototype.quadOp</td></tr></table></blockquote>Contains the string used for quadratic paths. </div></div><div class=CToolTip id="tt2406"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2407"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt2408"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
<div class=CToolTip id="tt2403"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td>mxAbstractCanvas2D.prototype.quadOp</td></tr></table></blockquote>Contains the string used for quadratic paths. </div></div><div class=CToolTip id="tt2404"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxAbstractCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><div class=CToolTip id="tt2405"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxVmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Replaces quadratic curve with bezier curve in VML.</div></div><div class=CToolTip id="tt2406"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class="Prototype prettyprint"><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>mxXmlCanvas2D.prototype.quadTo = function(</td><td class=PParameter nowrap>x1,</td></tr><tr><td></td><td class=PParameter nowrap>y1,</td></tr><tr><td></td><td class=PParameter nowrap>x2,</td></tr><tr><td></td><td class=PParameter nowrap>y2</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Adds a quadratic curve to the current path.</div></div><!--END_ND_TOOLTIPS-->
</div><!--Index-->

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@
<h1>mxGraph User Manual &ndash; JavaScript Client</h1>
<br/>
<br/>
<p>mxGraph Version 2.1.0.0 &ndash; 28. June 2013</p>
<p>mxGraph Version 2.1.0.1 &ndash; 12. July 2013</p>
<p>Copyright (c) JGraph Ltd 2006-2013</p>
<br/>
<p>All rights reserved. No part of this publication may be

View File

@ -9,7 +9,7 @@
<h1>JGraphX (JGraph 6) User Manual</h1>
<br/>
<br/>
<p>JGraphX Version 2.1.0.0 &ndash; 28. June 2013</p>
<p>JGraphX Version 2.1.0.1 &ndash; 12. July 2013</p>
<p>Copyright (c) JGraph Ltd 2006-2012</p>
<br/>
<p>All rights reserved. No part of this publication may be

View File

@ -113,7 +113,7 @@
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -81,7 +81,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -360,7 +360,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:54 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -118,7 +118,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1286,7 +1286,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -111,7 +111,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -114,7 +114,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -73,7 +73,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -200,7 +200,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -72,7 +72,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -257,7 +257,7 @@ Static Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -71,7 +71,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -128,7 +128,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -75,7 +75,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -229,7 +229,7 @@ Protected Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -123,7 +123,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -674,7 +674,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -91,7 +91,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -716,7 +716,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -79,7 +79,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -332,7 +332,7 @@ Static Protected Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -76,7 +76,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -240,7 +240,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -217,7 +217,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -2617,7 +2617,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -74,7 +74,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -170,7 +170,7 @@ Static Public Attributes</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -102,7 +102,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -743,7 +743,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -107,7 +107,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1481,7 +1481,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -137,7 +137,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1908,7 +1908,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -71,7 +71,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -99,7 +99,7 @@ Public Member Functions</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -114,7 +114,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -555,7 +555,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -162,7 +162,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -224,8 +224,8 @@ Public Member Functions</h2></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Called when the graph model has changed to invalidate the view. <a href="#ab396255800eb40d05b39bc129cfe579d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;2.1.0.0&quot;</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 2.1.0.0. <a href="#a12b4a8dcf881951589ccca36c7ebfccb"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">VERSION</a> = &quot;2.1.0.1&quot;</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Holds the version number of this release. Current version is 2.1.0.1. <a href="#a12b4a8dcf881951589ccca36c7ebfccb"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classcom_1_1mxgraph_1_1mxStylesheet.html">mxStylesheet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a54e7b28a0964d2d39ef9f4607ff39604">CreateStylesheet</a> ()</td></tr>
@ -2968,13 +2968,13 @@ Properties</h2></td></tr>
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const String <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">com.mxgraph.mxGraph.VERSION</a> = &quot;2.1.0.0&quot;</td>
<td class="memname">const String <a class="el" href="classcom_1_1mxgraph_1_1mxGraph.html#a12b4a8dcf881951589ccca36c7ebfccb">com.mxgraph.mxGraph.VERSION</a> = &quot;2.1.0.1&quot;</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Holds the version number of this release. Current version is 2.1.0.0. </p>
<p>Holds the version number of this release. Current version is 2.1.0.1. </p>
</div>
</div>
@ -3121,7 +3121,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -137,7 +137,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -2300,7 +2300,7 @@ Events</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -119,7 +119,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -1538,7 +1538,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:27 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -95,7 +95,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -521,7 +521,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -79,7 +79,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -358,7 +358,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -73,7 +73,7 @@ This is the complete list of members for <a class="el" href="classcom_1_1mxgraph
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

View File

@ -185,7 +185,7 @@ Properties</h2></td></tr>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 28 2013 20:02:26 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri Jul 12 2013 08:04:55 for mxGraph by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>

Some files were not shown because too many files have changed in this diff Show More