尝试使用Backbone和D3.js的this演示来创建动态更新的图表/图表。只是快速复制/粘贴尝试和代码玩,我无法让栏水平排列。条形图中的每个条形图都绘制在图形的第一行,创建一个"图形"看起来像这样
有趣的是,文本写得正确,但它只是似乎在同一行上绘制的<rect>
标签。第一次使用这个插件和非常新的Backbone(和CSS),所以任何想法/建议都非常感激。
SliderApp.js
var w = 440,
h = 200;
var DataPoint = Backbone.Model.extend({
initialize: function (x) {
this.set({
x: x
});
},
type: "point",
randomize: function () {
this.set({
x: Math.round(Math.random() * 10)
});
}
});
var DataSeries = Backbone.Collection.extend({
model: DataPoint,
fetch: function () {
this.reset();
this.add([
new DataPoint(10),
new DataPoint(12),
new DataPoint(15),
new DataPoint(18)
]);
},
randomize: function () {
this.each(function (m) {
m.randomize();
});
}
});
var BarGraph = Backbone.View.extend({
"el": "#graph",
initialize: function () {
_.bindAll(this, "render", "frame");
this.collection.bind("reset", this.frame);
this.collection.bind("change", this.render);
this.chart = d3.selectAll($(this.el)).append("svg").attr("class", "chart").attr("width", w).attr("height", h).append("g").attr("transform", "translate(10,15)");
this.collection.fetch();
},
render: function () {
var data = this.collection.models;
var x = d3.scale.linear().domain([0, d3.max(data, function (d) {
return d.get("x");
})]).range([0, w - 10]);
var y = d3.scale.ordinal().domain([0, 1, 2, 3]).rangeBands([0, h - 20]);
var self = this;
var rect = this.chart.selectAll("rect").data(data, function (d, i) {
return i;
});
rect.enter().insert("rect", "text").attr("y", function (d) {
return y(d.get("x"));
}).attr("width", function (d) {
return x(d.get("x"));
}).attr("height", y.rangeBand());
rect.transition().duration(1000).attr("width", function (d) {
return x(d.get("x"));
}).attr("height", y.rangeBand());
rect.exit().remove();
var text = this.chart.selectAll("text").data(data, function (d, i) {
return i;
});
text.enter().append("text")
.attr("x", function (d) {
return x(d.get("x"));
})
.attr("y", function (d, i) { return y(i) + y.rangeBand() / 2; })
.attr("dx", -3) // padding-right
.attr("dy", ".35em") // vertical-align: middle
.attr("text-anchor", "end") // text-align: right
.text(function (d) { return d.get("x"); });
text
.transition()
.duration(1100)
.attr("x", function (d) {
return x(d.get("x"));
})
.text(function (d) { return d.get("x"); });
},
frame: function () {
this.chart.append("line").attr("y1", 0).attr("y2", h - 10).style("stroke", "#000");
this.chart.append("line").attr("x1", 0).attr("x2", w).attr("y1", h - 10).attr("y2", h - 10).style("stroke", "#000");
}
});
$(function () {
var dataSeries = new DataSeries();
new BarGraph({
collection: dataSeries
}).render();
setInterval(function () {
dataSeries.randomize();
}, 2000);
});
剃刀/ Layout.cshtml
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
@Styles.Render("~/Content/ChartCss")
@Styles.Render("~/Content/css")
@Styles.Render("~/Content/uiSlider")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/jqueryui")
@Scripts.Render("~/bundles/jsMVC")
@Scripts.Render("~/bundles/BackboneApps")
@Scripts.Render("~/bundles/SignalR")
@Scripts.Render("~/bundles/Charts")
<script src="/signalr/hubs"></script>
</head>
<body>
@RenderBody()
</body>
</html>
剃刀/ Index.cshtml
<div id="graph">
</div>
呈现HTML
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<title>
</title>
<link href="/Content/Charts.css" rel="stylesheet"/>
<link href="/Content/site.css" rel="stylesheet"/>
<link href="/Content/themes/base/jquery-ui.css" rel="stylesheet"/>
<link href="/Content/themes/base/jquery-ui.structure.css" rel="stylesheet"/>
<link href="/Content/themes/base/jquery.ui.slider.css" rel="stylesheet"/>
<script src="/Scripts/jquery.js">
</script>
<script src="/Scripts/jquery-ui.js">
</script>
<script src="/Scripts/underscore.js">
</script>
<script src="/Scripts/backbone.js">
</script>
<script src="/Scripts/SliderApp.js">
</script>
<script src="/Scripts/jquery.signalR-2.1.2.js">
</script>
<script src="/Scripts/SignalRApp.js">
</script>
<script src="/Scripts/d3.js">
</script>
<script src="/Scripts/ChartView.js">
</script>
<script src="/signalr/hubs">
</script>
</head>
<body>
<div id="graph">
<svg class="chart" width="440" height="200">
<g transform="translate(10,15)">
<line y1="0" y2="190" style="stroke: rgb(0, 0, 0);">
</line>
<line x1="0" x2="440" y1="190" y2="190" style="stroke: rgb(0, 0, 0);">
</line>
<rect width="286.66666666666663" height="45">
</rect>
<rect width="430" height="45">
</rect>
<rect width="382.22222222222223" height="45">
</rect>
<rect width="191.11111111111111" height="45">
</rect>
<text x="286.66666666666663" y="22.5" dx="-3" dy=".35em" text-anchor="end">
6
</text>
<text x="430" y="67.5" dx="-3" dy=".35em" text-anchor="end">
9
</text>
<text x="382.22222222222223" y="112.5" dx="-3" dy=".35em" text-anchor="end">
8
</text>
<text x="191.11111111111111" y="157.5" dx="-3" dy=".35em" text-anchor="end">
4
</text>
</g>
</svg>
</div>
</body>
</html>
的site.css
html {
background-color: #e2e2e2;
margin: 0;
padding: 0;
}
body {
background-color: #fff;
border-top: solid 10px #000;
color: #333;
font-size: .85em;
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
margin: 0;
padding: 0;
}
Charts.css
.chart rect {
stroke: white;
fill: steelblue;
}
答案 0 :(得分:3)
我还没有测试过,而且我根本不知道Backbone,但它看起来像你正在使用你的y比例错误。
在:
rect.enter().insert("rect", "text").attr("y", function (d) {
return y(d.get("x"));
}).attr("width", function (d) {
return x(d.get("x"));
}).attr("height", y.rangeBand());
代码y(d.get("x"))
可能没有返回任何有用的东西。 y
域定义为0..3
,您传入的d.get("x")
将是10, 12, 15...
当您将域外的值传递到序数时,你得到NaN回来了。
你可能想要的是:
rect.enter().insert("rect", "text").attr("y", function (d, i) {
return y(i);
}).attr("width", function (d) {
return x(d.get("x"));
}).attr("height", y.rangeBand());
这将传递数据元素的索引,而不是它的y值的值,这应该导致相应的值被吐出。不同之处在于前两行。我已将索引变量i
作为参数添加到匿名函数中,而是返回y(i)
。
如果你查看为每个栏创建文本元素所需的代码,你实际上已经在那里得到它,你在函数中使用y(i)
来计算你{的位置{1}}属性。
这是我从您的代码开发的片段(数据是静态定义的,并且相应的引用方式已经更改,否则它是复制和粘贴):
y
var data = [
{ x: 10, },
{ x: 12, },
{ x: 15, },
{ x: 18, }
];
var w = 440, h = 200;
var x = d3.scale.linear().domain([0, d3.max(data, function (d) {
return d.x;
})]).range([0, w - 10]);
var y = d3.scale.ordinal().domain([0, 1, 2, 3]).rangeBands([0, h - 20]);
var svg = d3.selectAll("div#graph").append("svg")
.attr("class", "chart")
.attr("width", w).attr("height", h)
.append("g")
.attr("transform", "translate(10,15)");
var rect = svg.selectAll("rect").data(data, function (d, i) {
return i;
});
rect.enter().insert("rect", "text").attr("y", function (d) {
return y(d.x);
}).attr("width", function (d) {
return x(d.x);
}).attr("height", y.rangeBand());
rect.transition().duration(1000).attr("width", function (d) {
return x(d.x);
}).attr("height", y.rangeBand());
rect.exit().remove();
var text = svg.selectAll("text").data(data, function (d, i) {
return i;
});
text.enter().append("text")
.attr("x", function (d) {
return x(d.x);
})
.attr("y", function (d, i) { return y(i) + y.rangeBand() / 2; })
.attr("dx", -3) // padding-right
.attr("dy", ".35em") // vertical-align: middle
.attr("text-anchor", "end") // text-align: right
.text(function (d) { return d.x; });
text
.transition()
.duration(1100)
.attr("x", function (d) {
return x(d.x);
})
.text(function (d) { return d.x; });
.chart rect {
stroke: white;
fill: steelblue;
}
这是一个经过纠正的代码段:
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<div id="graph"></div>
var data = [
{ x: 10, },
{ x: 12, },
{ x: 15, },
{ x: 18, }
];
var w = 440, h = 200;
var x = d3.scale.linear().domain([0, d3.max(data, function (d) {
return d.x;
})]).range([0, w - 10]);
var y = d3.scale.ordinal().domain([0, 1, 2, 3]).rangeBands([0, h - 20]);
var svg = d3.selectAll("div#graph").append("svg")
.attr("class", "chart")
.attr("width", w).attr("height", h)
.append("g")
.attr("transform", "translate(10,15)");
var rect = svg.selectAll("rect").data(data, function (d, i) {
return i;
});
rect.enter().insert("rect", "text").attr("y", function (d, i) {
return y(i);
}).attr("width", function (d) {
return x(d.x);
}).attr("height", y.rangeBand());
rect.transition().duration(1000).attr("width", function (d) {
return x(d.x);
}).attr("height", y.rangeBand());
rect.exit().remove();
var text = svg.selectAll("text").data(data, function (d, i) {
return i;
});
text.enter().append("text")
.attr("x", function (d) {
return x(d.x);
})
.attr("y", function (d, i) { return y(i) + y.rangeBand() / 2; })
.attr("dx", -3) // padding-right
.attr("dy", ".35em") // vertical-align: middle
.attr("text-anchor", "end") // text-align: right
.text(function (d) { return d.x; });
text
.transition()
.duration(1100)
.attr("x", function (d) {
return x(d.x);
})
.text(function (d) { return d.x; });
.chart rect {
stroke: white;
fill: steelblue;
}
我已修改您的代码以删除Backbone内容,并且静态定义数据,以及引用代码中的数据时带来的更改。否则它们之间的唯一区别就像我上面所描述的那样。
注意,您可能需要设置y比例:
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<div id="graph">
</div>
然后,它会将y比例分割为与数据数组中的记录一样多的波段,而不是对域进行硬编码。