我正在使用谷歌浮动图表,它根据用户选择的值显示图表。图表在 x 轴上显示年份,在 y 轴上显示价格。
问题是,如果图形宽度很小,它会正确显示值。例如,如果我将宽度设置为
<div id="placeholder" style="width:500px;height:300px"></div>
但是如果图形宽度增加就像
<div id="placeholder" style="width:650px;height:300px"></div>
图表在 x 轴上显示不需要的零,例如
Insted of 2010 it shows 2010.0
Insted of 2011 it shows 2011.0
Insted of 2012 it shows 2012.0
我只想摆脱这些不需要的零。谷歌根本没有帮助我,我完全不知道这种愚蠢的flot行为。