我的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();
}