gpt4 book ai didi

javascript - 使用带有 JSON 数据的 techanJS D3 示例

转载 作者:行者123 更新时间:2023-11-27 22:50:31 27 4
gpt4 key购买 nike

我想在我的应用程序中使用几个 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 ($)");
});

最佳答案

我可以将数据存储在 json 文件中,您只需使用该函数

d3.json("file.json",callback);

之后,你必须更改代码中的属性名称(他的csv上的属性可能与json中的属性不同)

回调通常是一个函数,但我认为您不需要在代码中进行任何其他更改。

验证您的 json(使用类似 http://jsonprettyprint.com/ 的网站),使用默认 csv 在您的计算机 ( http://bl.ocks.org/andredumas/af8674d57980790137a0 ) 上测试代码,看看它是否有效。它的工作,更改为使用 json (就像我告诉你的)。

关于javascript - 使用带有 JSON 数据的 techanJS D3 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38098250/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com