完全なアプリのフィドルは次のとおりです。http://jsfiddle.net/RG4Eg/3/
これがJavaScriptです:
var HU = (function() {
var data = [
{"time": "13:24:20", "level_1": "5553", "level_2": "4682", "level_3": "1005"},
{"time": "14:24:20", "level_1": "6553", "level_2": "5682", "level_3": "2005"},
{"time": "15:24:20", "level_1": "7553", "level_2": "6682", "level_3": "3005"},
{"time": "16:24:20", "level_1": "8553", "level_2": "7682", "level_3": "3131"},
{"time": "17:24:20", "level_1": "9953", "level_2": "5500", "level_3": "5005"},
{"time": "18:24:20", "level_1": "8565", "level_2": "7682", "level_3": "6005"},
{"time": "19:24:20", "level_1": "7753", "level_2": "4546", "level_3": "4405"}
];
init = function() {
var margin = {
top: 10,
right: 10,
bottom: 30,
left: 50
},
width = 950 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var parseDate = d3.time.format("%H:%M:%S").parse;
var x = d3.time.scale()
.domain(d3.extent(data, function(d) { return parseDate(d.time); }))
.range([0, width]);
var y = d3.scale.linear()
.domain([0, d3.max(data, function(d) { return d.level_1; })])
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.tickFormat(d3.time.format(("%H:%M:%S")));
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var svg = d3.select("#chart")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0, " + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis);
var bars = svg.selectAll("rect")
.data(data)
.enter();
bars.append("rect")
.attr("x", function(d) { return x(parseDate(d.time)); })
.attr("y", function(d) { return y(d.level_1); })
.attr("width", 15)
.attr("height", function(d) { return height - y(d.level_1); })
.style("fill", "steelblue");
bars.append("rect")
.attr("x", function(d) { return x(parseDate(d.time)); })
.attr("y", function(d) { return y(d.level_2); })
.attr("width", 15)
.attr("height", function(d) { return height - y(d.level_2); })
.style("fill", "green");
bars.append("rect")
.attr("x", function(d) { return x(parseDate(d.time)); })
.attr("y", function(d) { return y(d.level_3); })
.attr("width", 15)
.attr("height", function(d) { return height - y(d.level_3); })
.style("fill", "red");
};
return {
init: init
};
})();
HU.init();
1 秒ごとに、一番左の列に新しいデータ ポイントを追加して、前のデータ ポイントを右に押す必要があります。
また、次のように、1 秒ごとにデータ自体を動的に変更したいと考えています。
- 各 level_1 データポイント = 現在の level_1 値 + (現在の level_1 値の +7% から -7% の間のランダム値)
- 各レベル_2 ランダム その値から 10-30% オフ
- level_3 ごとにランダムに level_2 の値から 10 ~ 30% オフ
どうすればそれを達成できますか?