我在我的应用程序中使用了几个techanJS示例,但我正在努力使用自己的数据。
以下是我想要使用的example code for the close chart。
我玩了!传递List [CloseList]数组的框架应用程序,然后使用:
将其转换为JSON对象var closesJSON = @{Html(new Gson().toJson(closes))};
我假设我可以用d3.json()取代d3.csv(),但是找不到一个有效的例子,到目前为止我的黑客攻击还没有到位。
d3.csv("data.csv", function(error, data) {
var accessor = close.accessor();
data = data.slice(0, 200).map(function(d) {
return {
date: parseDate(d.Date),
open: +d.Open,
high: +d.High,
low: +d.Low,
close: +d.Close,
volume: +d.Volume
};
}).sort(function(a, b) { return d3.ascending(accessor.d(a), accessor.d(b)); });
x.domain(data.map(accessor.d));
y.domain(techan.scale.plot.ohlc(data, accessor).domain());
svg.append("g")
.datum(data)
.attr("class", "close")
.call(close);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Price ($)");
});
在此处使用代码,这将呈现:
d3.json("/api/closedata/@equity.getId", function(error, data) {
var accessor = close.accessor();
data = data.map(function(d,i) {
console.log(d.high);
return {
date : parseDate(d.closeDate),
open : d.openPrice,
high : d.high,
low : d.low,
close : d.closePrice,
volume : d.volume
}
}).sort(function(a, b) { return d3.ascending(accessor.d(a), accessor.d(b)); });
x.domain(data.map(accessor.d));
y.domain(techan.scale.plot.ohlc(data, accessor).domain());
svg.append("g")
.datum(data)
.attr("class", "close")
.call(close);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Price ($)");
});
答案 0 :(得分:2)
我可以在json文件中存储数据,你只需要使用函数
d3.json("file.json",callback);
之后,您必须更改代码中属性的名称(他的csv上的attirbutes可能与json中的属性不同)
回调,通常是一项功能,但我认为您的代码中没有任何其他更改。
验证您的json(使用类似http://jsonprettyprint.com/的网站),使用默认的csv测试您计算机上的代码(http://bl.ocks.org/andredumas/af8674d57980790137a0),看看它是否有效。这是它的工作,改为使用json(就像我告诉你的那样)。