score:0

Accepted answer

here is a way to do it - although i think just having the column be zero-valued and not visible is the best way.

find a very very low number that none of your data points would ever have but still keep it >0. let us say it is .005. when you bring in your data any value that is 0 assign it this .005 value. in your tooltip formatter do an if on the value. if it is .005 then make it 0. this way you get to see the "zero" column but the tooltip displayed will be 0 as well. if you are doing any kind of calculation on the stacked columns then you need to account for this non-0 0 value in there as well.

score:0

not sure what you are trying to display, but maybe you could try to show the datalabels like this:

plotoptions: {
    series: {
        datalabels: {
            enabled: true,
            color: 'gray'
        }
    }
}

attempt at demo

score:13

you can do this quite simply with the minpointlength option. it sets the minimum number of pixels per column, default is 0, so zero values don't show up. it's in the docs here.

try this jsfiddle

score:41

minpointlength will work. use this.

plotoptions: {
    column: {
    minpointlength: 3
    }
}

Related Query

More Query from same tag