UNPKG
jsonld-vis
Version:
latest (2.1.0)
2.1.0
2.0.0
1.0.1
1.0.0
0.2.0
0.1.0
Turns JSON-LD into pretty graphs
github.com/scienceai/jsonld-vis
scienceai/jsonld-vis
jsonld-vis
/
example
/
index.js
13 lines
(10 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import d3
from
'd3'
; import jsonldVis
from
'../src/'
; import data
from
'./example.json'
;
jsonldVis
(d3); d3.
jsonldVis
(data,
'#graph'
, {
w
:
800
,
h
:
600
,
maxLabelWidth
:
250
,
tipClassName
:
'tip-class'
});