@@ -11,90 +11,90 @@ Complete list of the plug-ins examples included in the bootcamp:
1111### Layout
1212
1313* ** Grid Layout**
14- Place all nodes in a simple grid. Users can configure the size of the area and the speed.
14+ * Place all nodes in a simple grid. Users can configure the size of the area and the speed.
1515
1616* ** Sorted Grid Layout**
17- Same example as Grid Layout but users can sort nodes with an attribute column.
17+ * Same example as Grid Layout but users can sort nodes with an attribute column.
1818
1919### Filter
2020
2121* ** Transform to Undirected**
22- Edge filter to remove mutual edges in a directed graph.
22+ * Edge filter to remove mutual edges in a directed graph.
2323
2424* ** Top nodes**
25- Keep the top K nodes using an attribute column.
25+ * Keep the top K nodes using an attribute column.
2626
2727* ** Remove Edge Crossing**
28- Example of a complex filter implementation which removes edges until no crossing occurs.
28+ * Example of a complex filter implementation which removes edges until no crossing occurs.
2929
3030### Tool
3131
3232* ** Find**
33- Tool with a autocomplete text field to find any node based on labels and zoom by it.
33+ * Tool with a autocomplete text field to find any node based on labels and zoom by it.
3434
3535* ** Add Nodes**
36- Listen to mouse clicks and adds nodes. Also adds edges if selecting other nodes.
36+ * Listen to mouse clicks and adds nodes. Also adds edges if selecting other nodes.
3737
3838### Export
3939
4040* ** JPG Export**
41- Vectorial export to the JPG image format. Contains a settings panel to set the width and height.
41+ * Vectorial export to the JPG image format. Contains a settings panel to set the width and height.
4242
4343* ** SQLite Database Export**
44- Current graph export to a SQLite Database file. A new sub-menu is added in the Export menu and an example of a custom exporter is shown.
44+ * Current graph export to a SQLite Database file. A new sub-menu is added in the Export menu and an example of a custom exporter is shown.
4545
4646### Preview
4747
4848* ** Highlight Mutual Edges**
49- Colors differently mutual edges. Overwrites and extends the default edge renderer.
49+ * Colors differently mutual edges. Overwrites and extends the default edge renderer.
5050
5151* ** Glow Renderer**
52- Adds a new renderer for node items which draws a glow effect around nodes.
52+ * Adds a new renderer for node items which draws a glow effect around nodes.
5353
5454* ** Node Z-ordering**
55- Extends the default node builder by reordering the node items by size or any number columns. Also shows how to create complex Preview UI.
55+ * Extends the default node builder by reordering the node items by size or any number columns. Also shows how to create complex Preview UI.
5656
5757### Import
5858
5959* ** Matrix Market Importer**
60- File importer for the Matrix Market format.
60+ * File importer for the Matrix Market format.
6161
6262### Statistic
6363
6464* ** Count Self-Loop**
65- Example of a statistics result at the global level. Simply counts the number of self-loop edges in the graph.
65+ * Example of a statistics result at the global level. Simply counts the number of self-loop edges in the graph.
6666
6767* ** Average Euclidean Distance**
68- Example of a per-node calculation. For a given node it calculates the average distance to others.
68+ * Example of a per-node calculation. For a given node it calculates the average distance to others.
6969
7070### Plugins sub-menu
7171
7272* ** Test action**
73- Simple action which display a message and a dialog.
73+ * Simple action which display a message and a dialog.
7474
7575* ** Remove self loops**
76- Action which accesses the graph and remove self-loops, if any.
76+ * Action which accesses the graph and remove self-loops, if any.
7777
7878* ** Using Progress and Cancel**
79- Action which creates a long task and execute it with progress and cancel support.
79+ * Action which creates a long task and execute it with progress and cancel support.
8080
8181### Execute at startup
8282
8383* ** When UI is ready**
84- Do something when the UI finished loading.
84+ * Do something when the UI finished loading.
8585
8686* ** Workspace select events**
87- Do something when a workspace is selected.
87+ * Do something when a workspace is selected.
8888
8989### Processor
9090
9191* ** Initial Position**
92- Set up the nodes' initial position always the same. It calculates a hash with all nodes so the X/Y position is randomized always in the same way.
92+ * Set up the nodes' initial position always the same. It calculates a hash with all nodes so the X/Y position is randomized always in the same way.
9393
9494### New Panel
9595
9696* ** New panel**
97- Example of a new panel plugin set up at the ranking position.
97+ * Example of a new panel plugin set up at the ranking position.
9898
9999
100100## Installation
0 commit comments