我开始使用 d3js http://d3js.org,一开始我需要的只是仪表图标。它显示拍卖结束的时间以及拍卖的状态。页面上会有更多图标。这是小提琴http://jsfiddle.net/TdWtC/
第一次加载没问题,但我需要更新方面的帮助。更新时都必须更新背景和指针。主要问题是更新背景重叠指针。可能我做错了,但我定制了类似的片段,无法继续。
这是背景与指针重叠的部分
this.body.append("svg:path")
.style("fill", color)
.attr("d", d3.svg.arc()
.startAngle(this.valueToRadians(start))
.endAngle(this.valueToRadians(end))
.innerRadius(0.4 * this.config.raduis)
.outerRadius(this.config.raduis))
.attr("transform", function() { return "translate(" + self.config.cx + ", " + self.config.cy + ") rotate(270)" });
感谢帮助