highcharts - Remove padding above bar columns -
we have bar chart columns not reach top of graph container. how can remove that?
{ data: { chart: { type: 'column', plotbackgroundcolor: null, plotborderwidth: null, plotshadow: false, margin: [0, 0, 0, 0], backgroundcolor:'rgba(255,255,255,0.002)' }, colors: tallpoppies.templatecolours, legend: { enabled: false }, title: null, plotoptions: { series: { animation: false }, column: { cursor: 'pointer', datalabels: { enabled: false }, grouppadding: 0, pointpadding: 0.1, bordercolor: 'pink' } }, series: [{ type: 'column', name: 'skill', data: [ { name:'blah 1', color: 'red', y: 2 }, { name:'blah 2', color: 'yellow', y: 4 }, ] }], xaxis: { linewidth: 0, minorgridlinewidth: 0, linecolor: 'transparent', labels: { enabled: false }, minorticklength: 0, ticklength: 0 }, yaxis:{ gridlinewidth: 0, minorgridlinewidth: 0 } }
}
set:
see:
yaxis:{ endontick: false, maxpadding: 0, gridlinewidth: 0, minorgridlinewidth: 0 }
Comments
Post a Comment