0
我的RGraph x軸上有這些奇怪的標記。任何想法是什麼導致它?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();
}
在此還看到:HTTP://stackoverflow.com/questions/10853678/ rgraph重載最先前圖的時候,我重裝最頁和我點擊最身體的/ 10855605#10855605 – Richard