使用NVD3的响应饼图

时间:2016-02-25 10:45:26

标签: javascript d3.js charts responsive-design nvd3.js

我正在使用NVD3处理一个饼图的简单示例。它呈现正确,但没有响应。我试图按照this answer来提高响应速度,但还没有达到目的。

我做了fiddle。实际上,它是响应性的,但我无法将图表放入容器中。我的js代码:

nv.addGraph(function() {
  var chart = nv.models.pieChart()
  .x(function(d) { return d.label })
  .y(function(d) { return d.value })
  .showLabels(true);

  var $container = $('#chart'),
      width = $container.width(),
      height = $container.height();

  d3.select("#chart svg")
    .attr("width", '100%')
    .attr("height", '100%')
    .attr('viewBox','0 0 '+Math.min(width,height)+' '+Math.min(width,height))
    .attr('preserveAspectRatio','xMinYMin')
    .attr("transform", "translate(" + Math.min(width,height) / 2 + "," + Math.min(width,height) / 2 + ")")
    .datum(exampleData)
    .transition().duration(350)
    .call(chart);

  return chart;
});

var exampleData = [
  { 
    "label": "One",
    "value" : 29.765957771107
  } , 
  { 
    "label": "Two",
    "value" : 0
  } , 
  { 
    "label": "Three",
    "value" : 32.807804682612
  } , 
  { 
    "label": "Four",
    "value" : 196.45946739256
  } , 
  { 
    "label": "Five",
    "value" : 0.19434030906893
  } , 
  { 
    "label": "Six",
    "value" : 98.079782601442
  } , 
  { 
    "label": "Seven",
    "value" : 13.925743130903
  } , 
  { 
    "label": "Eight",
    "value" : 5.1387322875705
  }
];

如何在百分比大小的div中正确显示图表?

1 个答案:

答案 0 :(得分:2)

完成。 viewBox属性按顺序列出图形的最小宽度,最小高度,宽度和高度。因此,我将最后两个值更改为使用宽度和高度。并在css中放置一个min-height属性,以使其适应不断变化的窗口大小。

.attr('viewBox','0 0 '+width+' '+height)

fiddle

另一个选择是使用nv的update()方法:

nv.addGraph(function() {
  var chart = nv.models.pieChart()
  .x(function(d) { return d.label })
  .y(function(d) { return d.value })
  .showLabels(true);

  var $container = $('#chart'),
      width = $container.width(),
      height = $container.height();

  d3.select("#chart svg")
    .datum(exampleData)
    .transition().duration(350)
    .call(chart);

    nv.utils.windowResize(chart.update);

  return chart;
});