RGraph画柱状图X轴为什么会只显示一半

时间:2022-04-11 05:58:32
function window_onload()
{
//绘制柱状图,指定数据
myGraph = new RGraph.Bar('myCanvas',[1200,1300,1400,1500,3000,1900,2000,2100,2500,2700,1400,2600]);
//指定统计图标题
myGraph.Set('chart.title','2011住宅销售图');
//指定X轴标题
myGraph.Set('chart.title.xaxis','销售月份');
//指定Y轴标题
myGraph.Set('chart.title.yaxis','销售面积');
//指定X轴坐标文字
myGraph.Set('chart.labels',['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月']);
//指定Y坐标轴文字
myGraph.Set('chart.ylabels.specific',['3000','2500','2000','1500','1000','500']);
//指定在坐标轴顶部绘制说明销售数量的文字
myGraph.Set('chart.labels.above',true);
//指定网格自动与坐标轴单位对齐
myGraph.Set('chart.background.grid.autofit',true);
myGraph.Set('chart.background.grid.autofit.align',true);
//指定标签文字所使用的空间尺寸
myGraph.Set('chart.gutter',65);
//绘制柱状图
myGraph.Draw();
}
上面是函数代码,引用的是RGraph.bar.js和RGraph.common.core.js

3 个解决方案

#1


RGraph画柱状图X轴为什么会只显示一半

#2


同求!也是这个问题

#1


RGraph画柱状图X轴为什么会只显示一半

#2


同求!也是这个问题