我的RGraph x轴上有这些奇怪的痕迹。知道是什么导致了它吗?
这是一个截图(我用红色箭头标记了不需要的标记)
这是我打印该行的JavaScript代码。
function PrintLine(labels, tooltips, data, color, legend) {
var line = new RGraph.Line(CANVAS_ID, data);
line.Set('chart.labels', labels);
line.Set('chart.background.grid.hlines', false);
line.Set('chart.background.grid.autofit.numvlines', labels.length-1);
if(legend[0].length > 0) {
line.Set('chart.colors', legend[0]);
line.Set('chart.key', legend[1]);
line.Set('chart.key.position', 'gutter');
line.Set('chart.key.position.gutter.boxed', false);
line.Set('chart.key.position.x', 400);
}
line.Set('chart.tooltips', tooltips);
line.Set('chart.shadow', true);
line.Set('chart.ylabels', false);
line.Draw();
}
答案 0 :(得分:1)
看起来你可能有一张以前的图表 - 你可以通过清除ObjectRegistry来摆脱它:
RGraph.ObjectRegistry.Clear();
答案 1 :(得分:0)
将线设置chart.numxticks调整为所需的X刻度线数 .SET(' chart.numxticks',n)的