Search code examples
javascripthtmljqplot

Defining the height of the jqPlot horizontal bars and the distance between them


is there a way to define the height of the horizontal bars and the distance between them. I am searching for a possibility to put as many horizontal bars in a view as possible.

Thanks!


Solution

  • My solution:

                        seriesDefaults: {
    ...
                                rendererOptions: {
    ...
                                    barPadding: 1,
                                    barMargin: 10,
                                    barWidth: 20,
    ...
                                } 
                            },