2

我是 d3 和 json 的新手。我正在尝试构建水平甘特图。早些时候,我使用存储在 var 数据集中的内联数组也达到了同样的效果。但现在我已经用 json object array 替换了数组。

[   {
        "process" :"process-name 1",
        "stage" : "stage name 1",
        "activities": [
            {
            "activity_name": "waiting",
            "start": new Date('2012-12-10T06:45+05:30'),
            "end": new Date('2012-10-10T08:45+05:30'),
            },
            {
            "activity_name": "processing",
            "start": new Date('2012-10-11T05:45+05:30'),
            "end": new Date('2012-10-11T06:45+05:30'),
            },
            {
            "activity_name": "pending",
            "start": new Date('2012-10-12T11:45+05:30'),
            "end": new Date('2012-10-13T12:45+05:30'),
            }
            ]

    },
    {
        "process" :"process-name 2",
        "stage" : "stage name 2",
        "activities": [
            {
            "activity_name": "waiting",
            "start": new Date('2012-10-22T06:45+05:30'),
            "end": new Date('2012-10-23T08:45+05:30'),
            },
            {
            "activity_name": "processing",
            "start": new Date('2012-10-25T05:45+05:30'),
            "end": new Date('2012-10-25T06:45+05:30'),
            },
            {
            "activity_name": "pending",
            "start": new Date('2012-10-27T11:45+05:30'),
            "end": new Date('2012-10-27T12:45+05:30'),
            }
            ]
    }       

    ];

绘制矩形的代码的 d3 部分是这样的:

console.log(dataset);

var height = 600;
var width = 500;
var x = d3.time.scale().domain([new Date(2011, 0, 1,23,33,00), new Date(2013, 0, 1, 23, 59)]).range([0, width]);



var svg = d3.selectAll("body")
.append("svg")
.attr("width",width)
.attr("height",height)
.attr("shape-rendering","crispEdges");


temp = svg.selectAll("body")
.data(dataset) // LINE 1 
.enter()


temp.append("rect")
.attr("width", 4)
.attr("height",12)
.attr("x", function(d) {return x(d.activities[0].start)}) // LINE 2
.attr("y",function(d,i){return i*10;})
.attr("fill","steelblue");

我有以下问题:

  1. 我想访问活动中的开始日期,但使用代码行(标记为第 1 行和第 2行)我已经写了它只为每个活动的第一次开始提供 2 个矩形。为什么?

  2. 第 1行中,我可以使用 dataset.actitvies 而不仅仅是数据集吗?我尝试使用它,给了我这个错误:

未捕获的类型错误:无法读取未定义的属性“0”

4

1 回答 1

3
  1. 因为数据集的长度是 2,所以当你将它与你的矩形连接时,你只会得到 2 个矩形。

  2. 您可以使用 dataset.activities,但您会将 LINE 2 更改为

    .attr("x", function(d) {return x(d.start)})

因为您已经更改了联接,因此 d 现在指的是活动。然而,如果你这样做,你只会得到三个矩形——你的一个项目的活动。

如果您要使用嵌套数据,您要么需要使用嵌套选择,要么需要首先通过将所有活动添加到简单数组来展平数据。

var data = [];

for (var i = 0, len = dataset.length; i < len; i++) {
    data = data.concat(dataset[i].activities);
}

嵌套选择看起来像这样:

projects = svg.selectAll("g")
    .data(dataset)
  .enter().append("g")
    .attr("transform", function (d, i) { return "translate(0," + (i * 10) + ")"; }),

rects = projects.selectAll("rect")
    .data(function (d) { return d.activities; })
  .enter().append("rect")
    .attr("height", 12)
    .attr("width", 4)
    .attr("x", function (d) { return x(d.start); })

编辑:这是一个jsfiddle

于 2013-02-20T02:26:08.137 回答