D3 LineGraph Circles删除Overlap&&排序日期

时间:2012-09-21 15:02:38

标签: d3.js geometry margin overlap linegraph

http://www.fabieno.com/conanbatt/index.html

圈子重叠,因为它们有工具提示。这有点痛苦。如何修改此项以停止重叠?

另外,如何按照我希望看到的方式格式化日期?例如垂直和YYYY / dd / mm

https://github.com/FabienO/OpenKaya-1/tree/master/widgets/rank_graph

非常感谢任何帮助。感谢。

1 个答案:

答案 0 :(得分:1)

关于重叠的圆圈 - 假设你喜欢他们在X轴上的位置来准确地表示他们的比赛发生的时间 - 我认为你有两个选择。

在chart.js中:

1)使图表更宽:

// line 101
var w = $(that.html).parent().width() || 500; //Sometimes this is 0, dont know why.

2)使每个圆的半径变小。

// line 120
var pointRadius = 2;

作为奖励,我建议为每个圆圈添加填充颜色:

// line 244, replace circles.enter() with the following
circles
    .enter()
        .append('svg:circle')
            .attr('class', 'data-point')
            .style('opacity', 1e-6)
            .attr('cx', function(d) { return x(d.date) })
            .attr('cy', function() { return y(0) })
            .attr('r', function() { return (data.length <= maxDataPointsForDots) ? pointRadius : 0 })
            // On hover, fill the circle
            .on('mouseover', function(d, i) {
              circles.filter(function(p) {
                return d === p;
              })
              .style('fill', 'steelblue');
            })
            // Clear the fill
            .on('mouseout', function(d, i) {
              circles.filter(function(p) {
                return d === p;
              })
              .style('fill', 'white');
            })
        .transition()
        .duration(transitionDuration)
            .style('opacity', 1)
            .attr('cx', function(d) { return x(d.date) })
            .attr('cy', function(d) { return y(d.value) });

关于X轴标签的日期格式:

// line ~124
var xAxis = d3.svg.axis().scale(x).tickSize(h - margin * 2).tickPadding(10).ticks(7).tickFormat(d3.time.format('%Y/%d/%m'));

要旋转它们:

// line ~151
// x ticks and labels
if (!xAxisGroup) {
    xAxisGroup = svg.append('svg:g')
        .attr('class', 'xTick')
        .call(xAxis);
    xAxisGroup.selectAll('text')
        .attr('transform', 'translate(-210, 140) rotate(-45)');
}
else {
    t.select('.xTick').call(xAxis);
}

我分叉你的回购并开了一个拉动它,这样你就可以立刻看到所有的变化:https://github.com/FabienO/OpenKaya-1/pull/1