Skip to content Skip to sidebar Skip to footer

How To Move The Values Displayed On The Bar To Down To It?

Currently working with stack bar chart in jqplot. My doubt is how to move the value displayed on the bar to down of its bar? fiddle avail at here $(document).ready(function(){ var

Solution 1:

Here is solution: Jsfiddle link

just add css class with name of the parent element of the graph div element and the jqplot-point-label class mix. Look at the jsfiddle as it would make more sense there

.chart.jqplot-point-label {
    margin-top:50px;
}

Post a Comment for "How To Move The Values Displayed On The Bar To Down To It?"