X 축에 내 RGraph에 이상한 표시가 있습니다. 무슨 일이 일어나고 있니? 여기 RGraph : x 축에 이상한 기호가 있습니다.
는 스크린 샷 (I 빨간색 화살표가 원치 않는 마크를 표시)여기에 행을 인쇄 내 자바 스크립트 코드입니다.
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-reload-the-previous-graph-if-i-reload-the-page-and-i-click-the-body-of/10855605 # 10855605 – Richard