考虑选项:
<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中进行了搜索,但没有找到明确的方法。
有什么想法?
非常感谢
答案 0 :(得分:0)
您可以通过添加以下内容来完成此操作:
.xAxis .tickLabel{margin-left:40px;}
到你的CSS。如果这是你想要的,请告诉我。