-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
56 lines (55 loc) · 1.8 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*** USE THIS FILE TO SET OPTIONS ***/
setParams({
graphFile : "fpki-certs.gexf",
/*
The GEXF file to show ! -- can be overriden by adding
a hash to the document location, e.g. index.html#celegans.gexf
*/
showEdges : true,
/*
Default state of the "show edges" button
*/
useLens : false,
/*
Default state of the "use lens" button
*/
zoomLevel : 0,
/*
Default zoom level. At zoom = 0, the graph should fill a 800x700px zone
*/
curvedEdges : true,
/*
False for curved edges, true for straight edges
this setting can't be changed from the User Interface
*/
edgeWidthFactor : 1,
/*
Change this parameter for wider or narrower edges
this setting can't be changed from the User Interface
*/
minEdgeWidth : 1,
maxEdgeWidth : 50,
textDisplayThreshold: 9,
nodeSizeFactor : 1,
/*
Change this parameter for smaller or larger nodes
this setting can't be changed from the User Interface
*/
replaceUrls : true,
/*
Enable the replacement of Urls by Hyperlinks
this setting can't be changed from the User Interface
*/
showEdgeWeight : false,
/*
Show the weight of edges in the list
this setting can't be changed from the User Interface
*/
language: false
/*
Set to an ISO language code to switch the interface to that language.
Available languages are English [en], French [fr], Spanish [es],
Italian [it], Finnish [fi], Turkish [tr] and Greek [el].
If set to false, the language will be that of the user's browser.
*/
});