RGraph:折线图。如何在X轴上做两个衬里的标签?

时间:2013-05-12 19:55:12

标签: rgraph

我正在尝试使x轴上的标签两个衬里但是它的切断。这是我的代码

<!DOCTYPE html >
<html>
    <head>
        <script src="RGraph.common.core.js" ></script>
        <script src="RGraph.line.js" ></script>
   </head>
    <body>
        <canvas id="cvs" width="320" height="320">[No canvas support]</canvas>
        <script>
        window.onload = function ()
        {  
            var line = new RGraph.Line('cvs', [0,52,90,86,86,75,75,75,75,75,60,60,60,60,60,60,100,95,53,53]);
            line.Set('chart.labels',['10/05\n21:00','11/05\n08:00','11/05\n20:00','12/05\n08:00','12/05\n20:00']);
            line.Draw();
        }
        </script>
    </body>
</html>

这就是它的样子

enter image description here

我已经玩过画布高度,但它没有改变它。

1 个答案:

答案 0 :(得分:1)

增加chart.gutter.bottom设置。默认为25 - 因此将其设置为35或40。