In a chart with a high graphical chart set, how can I remove the space between the different

I have a stop bar using tall charts. From the jsfiddle example, can you see that there is a white line between green and blue? Can this be removed? This causes some problems in the pdf.

http://jsfiddle.net/daxu/e777hgev/

labels: {
    formatter: function () {
    return this.value;
    },
    style: {
           color: 'black',
           fontFamily: 'DINPro',
           fontSize: '7.76px',
           fontWeight: 'normal'
          }
    },

      

+3


source to share


1 answer


This can be removed using a parameter plotOptions.bar.borderWidth

. By default it is 1px. You can set it like this to remove the border:



plotOptions: {
    series: {
        stacking: 'normal',
        borderWidth: 0
    },
    animation: false
},

      

+5


source







All Articles