刻度线在线性时标中不可见

时间:2013-01-08 07:34:10

标签: javascript d3.js

我正在玩D3并希望刻度线在垂直轴上切割线性时间图。刻度线元素在那里,具有正确的向量,但它们不会出现。而是出现的是使用刻度标签水平运行的路径元素。

JSFiddle Link

var width = 960;
var height = 200;
var container = d3.select(".timeTable");
var svg = container.append("svg")
    .attr("width", width)
    .attr("height", height);
var roomID = container.attr("data-room");
var times = [
    {"from":"2012-12-27 00:00:00","until":"2012-12-27 12:00:00"},
    {"from":"2012-12-27 00:00:00","until":"2012-12-27 23:59:00"},
    {"from":"2012-12-27 02:00:00","until":"2012-12-27 04:00:00"},
    {"from":"2012-12-27 03:00:00","until":"2012-12-27 21:00:00"},
    {"from":"2012-12-27 03:30:00","until":"2012-12-27 04:50:00"},
    {"from":"2012-12-27 05:00:00","until":"2012-12-27 12:00:00"},
    {"from":"2012-12-27 09:00:00","until":"2012-12-27 15:00:00"},
    {"from":"2012-12-27 13:00:00","until":"2012-12-27 23:00:00"},
    {"from":"2012-12-27 13:00:00","until":"2012-12-27 23:30:00"},
    {"from":"2012-12-27 20:00:00","until":"2012-12-27 23:59:00"},
    {"from":"2012-12-27 20:00:00","until":"2012-12-27 22:00:00"},
    {"from":"2012-12-27 23:00:00","until":"2012-12-27 23:30:00"},
    {"from":"2012-12-28 01:00:00","until":"2012-12-28 13:00:00"}
];
function draw(times) {
    // domain
    var floor = d3.time.day.floor(d3.min(times, function (d) { return new Date(d.from); }));
    var ceil = d3.time.day.ceil(d3.max(times, function (d) { return new Date(d.until); }));
    // define linear time scale
    var x = d3.time.scale()
        .domain([floor, ceil])
        .rangeRound([0, width]);
    // define x axis
    var xAxis = d3.svg.axis()
        .scale(x)
        .orient('bottom')
        .ticks(d3.time.hours, 6)
        .tickSize(4);
    // draw time bars
    svg.selectAll("rect")
        .data(times)
        .enter().append("rect")
            .attr("class", "timeRange")
            .attr("width", function (d, i) { return x(new Date(d.until)) - x(new Date(d.from)); })
            .attr("height", "10px")
            .attr("x", function (d, i) { return x(new Date(d.from)); })
            .attr("y", function (d, i) { return i * 11; });
    // draw x axis
    svg.append("g")
        .attr("class", "xAxis")
        .attr("transform", "translate(0, " + (height - 23) + ")")
        .call(xAxis);
}
draw(times);

生成的路径元素只是与刻度线重叠,但即使删除了路径,刻度线也不可见。

此处显示了所需的嘀嗒效果Population Pyramid - 垂直轴上的刻度线有一条线,可以穿过图表的其余部分。

我需要注意时间尺度的不同行为吗?

非常感谢。

Chrome 23,D3 v3

3 个答案:

答案 0 :(得分:1)

将刻度线放入绘图区域的技巧是实际制作第二个轴并隐藏标签。因此,您的代码加上网格线看起来像(fiddle):

// draw x axis
var xAxisLine = svg.append("g")
    .attr("class", "xAxis")
    .attr("transform", "translate(0, " + (height - 23) + ")")
    .call(xAxis);

xAxisLine.selectAll("path.domain").attr("stroke","black").style('fill','none');
xAxisLine.selectAll("line.tick").style('stroke','black');

xAxis.tickSize(height-23);
var xAxisLineOver = svg.append("g")
    .attr("class", "xAxis-overlay")
    .attr("transform", "translate(0,0)")
    .call(xAxis);

xAxisLineOver.selectAll("path.domain").attr("stroke-width",0).style('fill','none');
xAxisLineOver.selectAll("line.tick").style('stroke','red');
xAxisLineOver.selectAll("text").text("");

答案 1 :(得分:1)

我不确定这是我遇到的完全相同的问题。对我有用的是:

.tick line{ 
  stroke: black
}

答案 2 :(得分:0)

Chrome在呈现SVG方面非常严格。因此请记住这一点:

  1. 为轴指定其完整的RGB值(因此#ff0000而不是仅#f00)。

  2. 路径笔触宽度很难设置。如果它们小于1(px)并且您已包含

    形状渲染:crissEdges;

使用CSS样式的Web浏览器可能无法显示此类路径(或将图表调整为其他大小时)。

在这种情况下,注释或删除“ crispEdges”渲染,就可以了(尽管在这种情况下,您可以让浏览器做出平滑决定)。