如何在flotcharts中更改xaxis位置?

时间:2015-05-27 09:13:14

标签: javascript html css charts jfreechart

考虑选项:

<style type="text/css">
    .wrapperClass .xAxis .tickLabel{margin-left:40px;}
</style>

var options = {                      
    series: {
        lines: {
            show: true,
            color: "#CCFFCC"
        },
        points: { show: true }
    },
    xaxis: {
        show: true,
        mode: "time",                                          
        font :{
            color: "Green",
            size: 16
        }
    },
    yaxis: {
        show: true,
        tickDecimals: 0
        minTickSize : 1, 
    }
}

并且:

<div class="wrapperClass">
    var plotChart = $('.someChart').plot(myJson, options).data("plot");
</div>

如何通过xaxis移动40px

我在文档here中进行了搜索,但没有找到明确的方法。

有什么想法?

非常感谢

1 个答案:

答案 0 :(得分:0)

您可以通过添加以下内容来完成此操作:

.xAxis .tickLabel{margin-left:40px;}

到你的CSS。如果这是你想要的,请告诉我。