jqplot - yaxis只显示2个字符

时间:2012-11-22 11:39:10

标签: jquery jqplot

我有一个情节,它的yaxis需要有可能从0到150M呈现 然而,我有一个小地方把它放在我的网站(130X70),我的问题是yaxis数字(最有可能是数百万)正在占用我所有的空间和情节它是我想要的大小的1/3它是......我怎么能“渲染”它所以我只能看到2个Chars? (Ex 20,000,000将变为20。)

谢谢,抱歉我的英语不好......

1 个答案:

答案 0 :(得分:0)

几个月前我问了一个相关的问题。

看看:JqPlot : Set a fix height value for the graph area not including y axe labels

想法是在创建后重置图表高度和宽度,然后重新绘制

var w = parseInt($(".jqplot-yaxis").width(), 10) + parseInt($("#chart").width(), 10);
var h = parseInt($(".jqplot-title").height(), 10) + parseInt($(".jqplot-xaxis").height(), 10) + parseInt($("#chart").height(), 10);
$("#chart").width(w).height(h);
plot.replot();