diff options
Diffstat (limited to 'www/lib/vis/docs/network/edges.html')
| -rw-r--r-- | www/lib/vis/docs/network/edges.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/www/lib/vis/docs/network/edges.html b/www/lib/vis/docs/network/edges.html index 42c132ac..423f9a45 100644 --- a/www/lib/vis/docs/network/edges.html +++ b/www/lib/vis/docs/network/edges.html @@ -115,9 +115,9 @@ var options = { edges:{ arrows: { - to: {enabled: false, scaleFactor:1}, - middle: {enabled: false, scaleFactor:1}, - from: {enabled: false, scaleFactor:1} + to: {enabled: false, scaleFactor:1, type:'arrow'}, + middle: {enabled: false, scaleFactor:1, type:'arrow'}, + from: {enabled: false, scaleFactor:1, type:'arrow'} }, arrowStrikethrough: true, color: { @@ -244,6 +244,12 @@ network.setOptions(options); <td>The scale factor allows you to change the size of the arrowhead.</td> </tr> <tr parent="arrows" class="hidden"> + <td class="indent2">arrows.to.type</td> + <td>String</td> + <td><code>arrow</code></td> + <td>The type of endpoint. Default is <code>arrow</code>. Also possible is <code>circle</code>.</td> + </tr> + <tr parent="arrows" class="hidden"> <td class="indent">arrows.middle</td> <td>Object or Boolean</td> <td><code>Object</code></td> @@ -703,4 +709,4 @@ var options: { <script src="../js/tipuesearch.config.js"></script> <script src="../js/tipuesearch.js"></script> <!-- controller --> -<script src="../js/main.js"></script>
\ No newline at end of file +<script src="../js/main.js"></script> |
