NVD3 - 如何刷新数据功能以在点击时生成新数据

IT技术 javascript d3.js nvd3.js
2021-02-27 08:32:29

我有一个折线图,每次页面刷新时它都会更改数据,这很好,但我需要通过用户单击来刷新。这是因为页面上最终会有其他输入字段,刷新页面会破坏它们的当前会话。

jsfiddle - http://jsfiddle.net/darcyvoutt/dXtv2/

这是创建该行的代码设置:

function economyData() {  

    // Rounds
    var numRounds = 10;

    // Stability of economy
    var stable = 0.2;
    var unstable = 0.6;
    var stability = unstable;

    // Type of economy
    var boom = 0.02;
    var flat = 0;
    var poor = -0.02;
    var economyTrend = boom;

    // Range    
    var start = 1;
    var max = start + stability;
    var min = start - stability;

    // Arrays
    var baseLine = [];
    var economy = [];

    // Loop
    for (var i = 0; i < numRounds + 1; i++) {    

      baseLine.push({x: i, y: 1});

      if (i == 0) {

        economyValue = 1;

      } else {

        var curve = Math.min(Math.max( start + ((Math.random() - 0.5) * stability), min), max);        

        economyValue = Math.round( ((1 + (economyTrend * i)) * curve) * 100) / 100;

      }

      economy.push({x: i, y: economyValue});

    }

    return [
      {
        key: 'Base Line',
        values: baseLine   
      },
      {
        key: 'Economy',
        values: economy  
      }
    ];
  }

这是我尝试编写但更新失败的内容:

function update() {
      sel = svg.selectAll(".nv-line")
      .datum(data);

      sel
        .exit()
        .remove();

      sel
        .enter()
        .append('path')
          .attr('class','.nv-line');

      sel
        .transition().duration(1000);

  };

  d3.select("#update").on("click", data);  
1个回答

这是我对您的代码所做的不同之处。

// Maintian an instance of the chart 
var chart; 

// Maintain an Instance of the SVG selection with its data
var chartData;

nv.addGraph(function() {
    chart = nv.models.lineChart().margin({
        top : 5,
        right : 10,
        bottom : 38,
        left : 10
    }).color(["lightgrey", "rgba(242,94,34,0.58)"])
        .useInteractiveGuideline(false)
        .transitionDuration(350)
        .showLegend(true).showYAxis(false)
        .showXAxis(true).forceY([0.4, 1.6]);

    chart.xAxis.tickFormat(d3.format('d')).axisLabel("Rounds");
    chart.yAxis.tickFormat(d3.format('0.1f'));

    var data = economyData();

    // Assign the SVG selction
    chartData = d3.select('#economyChart svg').datum(data);
    chartData.transition().duration(500).call(chart);

    nv.utils.windowResize(chart.update);

    return chart;
});

下面是update()函数的样子:

function update() {
    var data = economyData();

    // Update the SVG with the new data and call chart
    chartData.datum(data).transition().duration(500).call(chart);
    nv.utils.windowResize(chart.update);
};

// Update the CHART
d3.select("#update").on("click", update);

这是指向您的代码工作版本链接

希望能帮助到你。

注意:我无法让示例工作。在本地克隆和玩弄,我收到关于 transitionDuration 的错误(似乎语法已更改)。即使删除了这个,我也没有任何反应(尽管在本地工作)。
2021-05-02 08:32:29
@JeffG:我无法在两个小提琴中复制内存泄漏。
2021-05-08 08:32:29
谢谢!点。甚至使用了我编写的一些新代码。
2021-05-13 08:32:29
当您稍微增加数据并将其设置为自动更新时,我会遇到严重的内存泄漏。 jsfiddle.net/1hjyrr43/1
2021-05-19 08:32:29
@bwarren2 我已经更新了 shabeer90 的代码以使其再次工作。在以下位置查看:jsfiddle.net/eu26dLcx
2021-05-20 08:32:29