Hi,
I am using d3 in aspx page. I am feeding json file as input and used JSON.parse as suggested by you (thanks a lot).
I am getting the output in localhost. but after hosting it on server (IIS), i am getting a blank page.. :(
I have tried different things.. Any idea why it is happening???
PFA the source file:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>
<head runat="server">
<meta content="text/html;charset=utf-8" />
<title>D3 Test</title>
<script type="text/javascript" src="d3/d3.v3.js"></script>
<script type="text/javascript" src="Scripts/json_sans_eval.js"></script>
<style type="text/css">
.node
{
stroke: #fff;
stroke-width: 1.5px;
}
.link
{
stroke: #999;
stroke-opacity: .6;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:HiddenField ID="hdnData" runat="server" />
</div>
</form>
<script type="text/javascript">
//var ret = document.getElementById('hdnData').value;
var myjson = jsonParse(ret);
var width = 960;
var height = 500;
var color = d3.scale.category20();
var force = d3.layout.force()
.charge(-120)
.linkDistance(50)
.size([width, height]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("multiple.json", function (error, graph) {
force
.nodes(myjson.nodes)
.links(myjson.links)
.start();
var link = svg.selectAll("line.link")
.data(myjson.links)
.enter().append("line")
.attr("class", "link")
.style("stroke-width", function (d) { return Math.sqrt(d.value); });
var node = svg.selectAll("circle.node")
.data(myjson.nodes)
.enter().append("circle")
.attr("class", "node")
.style("fill", function (d) { return color(d.group); })
.call(force.drag);
node.append("title").text(function (d) { return
d.name; });
force.on("tick", function () {
link.attr("x1", function (d) { return d.source.x; })
.attr("y1", function (d) { return d.source.y; })
.attr("x2", function (d) { return d.target.x; })
.attr("y2", function (d) { return d.target.y; });
node.attr("cx", function (d) { return d.x; })
.attr("cy", function (d) { return d.y; });
});
});
</script>
</body>
</html>
Regards.