1

我创建了一个 highchart 和我从 csv 文件中获取的数据。图表运行良好并且绘图很好。但我的问题是当页面刷新时它没有从 csv 文件中获取最新值。它仍然显示旧图表。当我关闭浏览器并重新打开图表时工作正常。请帮助我如何使用来自 csv 的更新值重置/重绘下面是我的代码。这个问题IE不在Firefox中

var options = { chart: { renderTo: 'container', defaultSeriesType: 'line', marginRight: 130, marginBottom: 25 }, title: { text: 'Support Trending P1,P2 & P3' }, xAxis: { categories: [ ] },

              yAxis: {

                  showLastLabel:true,
                  tickInterval:5,
                  title: {
                          text: ""
                  }
                  },

              series: []
          };


          $.get('../data/trending.txt', function(data) {
              // Split the lines
              var lines = data.split(';');
              $.each(lines, function(lineNo, line) {
                  var items = line.split(',');

                  // header line containes categories
                  if (lineNo == 0) {
                      $.each(items, function(itemNo, item) {
                          if (itemNo > 0) options.xAxis.categories.push(item);
                      });
                  }

                  // the rest of the lines contain data with their name in the first position
                  else {
                      var series = {
                          data: []
                      };
                      $.each(items, function(itemNo, item) {
                          if (itemNo == 0) {
                              series.name = item;
                          } else {
                              series.data.push(parseFloat(item));
                          }
                      });

                      options.series.push(series);

                  }

              });

              var chart = new Highcharts.Chart(options);
          });


      });

块引用

4

1 回答 1

2

看起来您的图表数据正在被缓存,而不是被浏览器刷新。没有代码,知道如何修复它是一张卡片。

如果您使用的是 jquery $.ajax,则有一个选项

 cache:false

这可能会有所帮助。 http://api.jquery.com/jQuery.ajax/

于 2013-03-24T13:25:38.710 回答