简体   繁体   English

具有自动调整大小的D3条形图

[英]D3 bar chart with autosize

Good afternoon. 下午好。

I need to automatic update the size of the chart. 我需要自动更新图表的大小。 My code is above. 我的代码在上面。 My data is something like this, when the data is small i do not have problem but when it is big the values in xAxis and the bars are overlapping. 我的数据是这样的,当数据较小时,我没有问题,但当数据较大时,xAxis中的值和条形重叠。

var data = [
  {key:1, value:5},
  {key:2, value:10},
  {key:3, value:15},
  {key:4, value:26},
  {key:5, value:33}
];

var margin = {
 top: 30,
 right: 10,
 bottom: 30,
 left: 30
},

width = 900 - margin.left - margin.right,
height = 300 - margin.top - margin.bottom;

 var x = d3.scale.ordinal()
  .domain(data.map(function(d) {
    return d.key;
}))
.rangeRoundBands([margin.left, width], 0.05);

var y = d3.scale.linear()
.domain([0, d3.max(data, function(d) {
    return d.value;
})])
.range([height, 0]);

var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");

var yAxis = d3.svg.axis()
.scale(y)
.orient("left");

var key = function(d) {
return d.key;
 };

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

 svg.append("text")
.attr("x", (width / 2))
.attr("y", 0 - (margin.top / 2))
.attr("text-anchor", "middle")
.style("font-size", "16px")
.style("text-decoration", "underline")
.text("Log(number sts) vs Nodes  - Gen" + " " + startGen +  " "+"to" + " "+ endGen)

 svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(-30," + height + ")")
.call(xAxis)
.append("text")
.attr("x", width)
.attr("dy", 30)
.attr("text-anchor", "end")
.text("Number of nodes");

 svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", -30)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Log(Number Sts)");



var bars = svg.selectAll("rect")
 .data(data, key)
 .enter().append("rect")
 .attr("x", function(d) {
    return x(d.key) + x.rangeBand() / 2 - 40;
  })
 .attr("y", function(d) {
    return y(d.value);
  })
  .attr("width", 20)
  .attr("height", function(d) {
    return height - y(d.value);
  })
 .style("fill", "blue");

If you want to size the chart according to how much data you have then you can simply replace your "width" variable with a calculation: something like: 如果您想根据所拥有的数据来调整图表的大小,则可以简单地将“ width”变量替换为以下计算:

width = Math.min(900, 20 * data.length);

But perhaps what you mean is to size the bars based on how much room there is? 但是,也许您的意思是根据房间的大小来确定酒吧的大小? You are already using x.rangeBand that gives you the available range width - try using that for the bar width 您已经在使用x.rangeBand来提供可用的范围宽度-尝试将其用于条形宽度

...
.attr("width", x.rangeBand())

If you want to get fancy you can have finer control over the bar width and gap. 如果您想花哨的话,可以更好地控制条的宽度和间隙。 Something like: 就像是:

var barWidth = Math.max(1, 0.9 * x.rangeBand());
var halfGap = Math.max(0, x.rangeBand() - barWidth) / 2;

var bars = svg.selectAll("rect")
  .data(data, key)
  .enter().append("rect")
  .attr("x", function(d) {
    return x(d.key) + halfGap - 30 ;
  })
  .attr("width", barWidth)
  ...

You can try the fiddle here 你可以在这里尝试小提琴

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM