我想设置我的属性名称,而不是 x 轴上的数值。我不是 Javascript 英雄。我正在使用散点图。
我相信它应该是这样的:
chart.xAxis.tickFormat(d3.format(String));
然后我可以设置:
chart.xAxis
.axisLabel('Attributes').staggerLabels(true).tickValues(["A", "B", "C"]);;
然后设置值:
data[i].values.push({
x : "A" ,
y : 29.765957771107,
size: Math.random(),
shape: shapes[j % 6]
} , ..
如何在 x 轴上查看我的属性“A”、“B”等?我也浏览了 nvd3 源代码,但没有找到正确的 API 调用。