Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
绘制折线图时,我有一长串 x 轴数据的数据(大约 800 个条目)。问题是它不会正确显示并相互覆盖。我正在考虑一种显示方式(例如,每一百个网格)并且不知道该怎么做。请帮帮我。
谢谢。
您可以指定要在您选择的轴上显示的刻度数组:
var xTicks = new Array(1,101,201,301,401,501,601,701,800); --In your plot, add ticks option to your chosen axis : axes: { xaxis: { ticks: xTicks --my ticks array renderer: $.jqplot.CategoryAxisRenderer, autoscale: false } }
它应该可以解决问题。