如何固定截断的y轴和x轴

时间:2019-09-27 09:22:23

标签: d3.js

旋转x轴和y轴标签后,它已被截断-要修复被截断的x轴和y轴,请建议如何在d3.js平台上对其进行修复。我完全迷失了如何使x轴和y轴动态显示所有单词并相应地动态缩小图表

var margin = {top: 40, right: 40, bottom: 40, left: 40},
    width = pbi.width - margin.left - margin.right,   // ALTER: Changed fixed width with the 'pbi.width' variable
    height = pbi.height - margin.top - margin.bottom; // ALTER: Changed fixed height with the 'pbi.height' variable

var x = d3.scale.ordinal()
    .rangeRoundBands([0, width], 0.9);

var y = d3.scale.linear()
    .range([height, 0]);

var svg = d3.select("#chart")
    .attr("width", width + margin.left + margin.right)
    .attr("height", height + margin.top + margin.bottom)
    .append("g")
    .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

// ALTER: Replaced the d3.tsv function with the pbi variant: pbi.dsv
pbi.dsv(type, function(wwo) {
    x.domain(wwo.map(function(d) { return d.wwo; }));
    y.domain([0, d3.max(wwo, function(d) { return d.activity_duration; })]);

    svg.append("g")
        .attr("class", "x axis")
        .attr("transform", "translate(0," + height + ")")
        .call(d3.svg.axis().scale(x).orient("bottom"))
        .selectAll("text")
           .attr("transform", "rotate(-45)")
           .style("text-anchor", "end");

    svg.append("g")
        .attr("class", "y axis")
        .call(d3.svg.axis().scale(y).orient("left"));

    svg.selectAll(".bar")
        .data(wwo)
        .enter()
        .append("rect")
        .style("fill", pbi.colors[0]) // First color of provided color array
        .attr("x", function(d) { return x(d.wwo); })
        .attr("width", x.rangeBand())
        .attr("y", function(d) { return y(d.activity_duration); })
        .attr("height", function(d) { return height - y(d.activity_duration); });
});

function type(d) {
    d.activity_duration = +d.activity_duration;
    return d;
}

enter image description here

1 个答案:

答案 0 :(得分:0)

在这种情况下,您需要增加边距,因此增加margin.bottom的值将减小图表内容的大小,并在容器底部和Y轴之间留出更多空间。

如果您不确定标题将要持续多久并且正在执行此客户端(而不是服务器端呈现的图表),则可以利用getBBox和双重呈现来自动大小。

您可以按原样呈现图表,然后使用getBBox()计算每个标签的高度。取最大的一个作为margin.bottom。然后用新的大小重新绘制图表。