我使用D3和数据的JSON对象目前正在实施的图表。 这样的图的工作示例可以在这里找到: http://bl.ocks.org/950642 。 如果你知道D3你当然可以直接跳到我的问题的一部分。
代码快速概览
所以,基本上在我的模板我有必要的最低限度的代码:
<div id="main" class="lift:surround?with=default;at=content">
<div class="lift:GraphVisual.showGraph"></div>
</div>
然后在我的片段( GraphVisual.scala
)我有以下几点:
def showGraph = {
<h3>Bachelor 5/6 - Communication Systems</h3> ++
<div id="graph-container" width="500px" height="100px">
<script type="text/javascript" src="static/scripts/graph_script.js></script>
</div>
在JavaScript文件中定义的曲线图( graph_script
)我主要有以下
var vis = d3.select("#graph-container").append("svg:svg")
d3.json("static/scripts/jsonData.json", function(json) {
//Do stuff
}
我的问题
如果我存储在一个文件中的json数据,如上图所示,一切工作正常。 现在,我想我的生成与提升JSON对象。 所以,我想有一个函数返回在提升图形的JSON对象表示和在脚本中使用它(这应该是静态的)。
我试着
假设我有以下值定义我的图表:
val graph = JObject(JField("nodes", JArray(List(...))), JField("links", JArray(List)))
我试图定义该图形作为D3以上脚本的脚本变量:
<script>{JsCrVar("myGraph", graph).toJsCmd}</script>
用这种方法我有可变myGraph
这是明确的,但我不知道如何访问它graph_script.js