14

我的 x 轴目前有编号的刻度。我希望用我的对象中的数据(特别是关键字值)替换刻度。我将如何做到这一点?

我有一个工作小提琴

var dataset = [
            {"keyword": "payday loans", "global": 1400000, "local": 673000, "cpc": "14.11"},
            {"keyword": "title loans", "global": 165000, "local": 160000, "cpc": "12.53" },
            {"keyword": "personal loans", "global": 550000, "local": 301000, "cpc": "6.14"},
            {"keyword": "online personal loans", "global": 15400, "local": 12900, "cpc": "5.84"},
            {"keyword": "online title loans", "global": 111600, "local": 11500, "cpc": "11.74"}
        ];

var xAxis = d3.svg.axis()
    .scale(xScale)
    .orient("bottom");
// xAxis
svg.append("g") // Add the X Axis
    .attr("class", "x axis")
    .attr("transform", "translate(0," + (h) + ")")
    .call(xAxis);
//xAxis Label
svg.append("text") 
    .attr("transform", "translate(" + (w / 2) + " ," + (h + margin.bottom - 5) +")")
    .style("text-anchor", "middle")
    .text("Keyword");
4

2 回答 2

38

实现这一点的最简单方法是tickFormat为您的轴设置功能:

var xAxis = d3.svg.axis()
    .scale(xScale)
    .tickFormat(function(d) { return dataset[d].keyword; })
    .orient("bottom");

您可能需要稍微调整宽度以适合标签(或旋转它们)。

执行此操作的“正确”方法是将您的域值指定xScale为关键字而不是数组索引。然后,您将不得不更改所有其他使用的代码xScale

于 2013-04-23T21:08:36.560 回答
3

这称为序数轴,请查看创建者的示例

于 2016-08-16T02:56:51.430 回答