Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
alessant committed Sep 2, 2019
1 parent db1bc43 commit 5e45741
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/visualization/widgets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ end
function widgetColorEdge(data)
w= Widget("colorEdge", """
<head>
<link rel="stylesheet" type="text/css" href="https://github.com/isislab-unisa/hypergraphs-plot/tree/master/css/color-edge-style.css">
<link rel="stylesheet" type="text/css" href="https://isislab-unisa.github.io/hypergraphs-plot/css/color-edge-style.css">
</head>
<div class="hg-plot"></div>
<script src="https://raw.githubusercontent.com/isislab-unisa/hypergraphs-plot/master/bundle.v1.0.js"></script>
<script src="https://isislab-unisa.github.io/hypergraphs-plot/bundle.v1.0.js"></script>
<script>
hgplot.drawing.hgColorEdgePlot({graph:"""*data*"""});
</script>
Expand All @@ -22,10 +22,10 @@ end
function widgetVenn(data)
w= Widget("venn", """
<head>
<link rel="stylesheet" type="text/css" href="https://github.com/isislab-unisa/hypergraphs-plot/tree/master/css/venn-style.css">
<link rel="stylesheet" type="text/css" href="https://isislab-unisa.github.io/hypergraphs-plot/css/venn-style.css">
</head>
<div id="venn"></div>
<script src="https://raw.githubusercontent.com/isislab-unisa/hypergraphs-plot/master/bundle.v1.0.js"></script>
<script src="https://isislab-unisa.github.io/hypergraphs-plot/bundle.v1.0.js"></script>
<script>
hgplot.drawing.hgVennNodesPlot({graph:"""*data*"""});
</script>
Expand All @@ -37,10 +37,10 @@ end
function widgetRadal(data)
w= Widget("radal", """
<head>
<link rel="stylesheet" type="text/css" href="https://github.com/isislab-unisa/hypergraphs-plot/tree/master/css/radal-style.css">
<link rel="stylesheet" type="text/css" href="https://isislab-unisa.github.io/hypergraphs-plot/css/radal-style.css">
</head>
<div class="radarChart"></div>
<script src="https://raw.githubusercontent.com/isislab-unisa/hypergraphs-plot/master/bundle.v1.0.js"></script>
<script src="https://isislab-unisa.github.io/hypergraphs-plot/bundle.v1.0.js"></script>
<script>
hgplot.drawing.hgRadalPlot({graph:"""*data*"""})
</script>
Expand Down

0 comments on commit 5e45741

Please sign in to comment.