Fleet: how to align xaxis labels above the tick line and place labels in the chart area instead of external space

I am wondering if there is a configuration to place the marks of the center axis above the tick line? and also place them in the chart area instead of the outer space?

for the last problem, I used "labelMargin: -30" in the grid options, while it mattered than not setting it, however, there was no difference if I installed "labelMargin: -50" or used another higher negative number. Does anyone know how to handle this?

early!

+5
source share
3 answers

, :

series: {

      bars: {'show': 'true', 'align': "center", 'barWidth':0.7}

       }
+10

, tickLabel

.

#myGraph .tickLabel {
    margin-left: 2em;
}

, x - , !

+3

Even if I have something similar, but for the y axis, and that I also had the y axis, so I did the following and it worked:

 #graph_label .tickLabel {
           margin-left: 0em;
           margin-right:0em;
      } 

or

#graph_label .yAxis .tickLabel {
           margin-left: 0em;
           margin-right:0em;
      } 

#graph_label .y2Axis .tickLabel {
           margin-left: 0em;
           margin-right:0em;
      } 
+1
source

All Articles