用JQPlot在Xaxis中显示空字符串



i使用jqplot作为线图,我在数据[date,int]中有2个字段,我的JSON数据在这里:

[{"12/15/2013": "10"},{"12/16/2013": "0"}, {"12/22/2013": "10"},{"12/29/2013": "0"},{"12/30/2013": "10"}] 
  • 在此数据中,第15、22、29天是星期日,我想在Xaxis标签中显示。
  • 在12月的第16天,第30天,我不想在Xaxis中显示,但是在Yaxis中应该是显示点标签。

我的问题我找不到该怎么做,任何人都可以建议我。谢谢

您必须定义最小值和最大值

axes: {
       // Use a category axis on the x axis and use our custom ticks.
       xaxis: {
         min : 15,
         max : 29,
         numberTicks:3
       }
}

相关内容

  • 没有找到相关文章

最新更新