0

我有一个动态显示一些值的 jqPlot 图表。当有任何值要显示(显示网格等)但图表消失时,我也需要显示图表。

如何解决?

Javascript:

$(document).ready(function(){
  var plot1 = $.jqplot ('chart1', []);
});
4

1 回答 1

2

我找到了解决方案。有一个参数可以解决这个问题:

options.noDataIndicator = {    
                show: true, //Show the grid. It was false
                indicator: '',  //Show a message
                axes: { //axes info
                    xaxis: {
                        min: 0,
                        max: 10,
                        tickInterval: 2,
                        show: false},
                    yaxis: {
                        min: 0,
                        max: 12,
                        tickInterval: 3,
                        show: false}
                }
        }; 
于 2013-11-05T10:09:36.330 回答