我希望以x轴显示字符串而不是数值的方式更改此内容。
chart1.width(500)
.height(500)
.x(d3.scale.linear().domain([0, 30])) //This reflect the number.. how do i change it to show string instead?
.yAxisLabel("ID")
.xAxisLabel("Stage")
.clipPadding(10)
.dimension(dim1)
.excludedOpacity(0.5)
.group(group1);