g.append('g').call(x_axis).attr('transform','translate('+0+','+g_height+')')
.append("text").text("时间").attr("text-anchor","end").attr("dx","1em")
调整位置可以用三种方式,你尝试一下:
- .attr("x", "1em")指定x 轴方向的位置
- .attr("dx", "1em")指定x 轴方向的偏移
- .attr("text-anchor","end"),end 也可以替换为 start
然而没用,该怎么改?
相关分类