使用jqplot LineChart创建一个空白图表

时间:2013-11-04 17:19:01

标签: javascript jqplot

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

如何解决?

使用Javascript:

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

1 个答案:

答案 0 :(得分: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}
                }
        };