Bar chart label overlap bug

Hi,

I am trying to add a label to my chart, but when I put a text after {0} in the format, it shows up overlapped on the left.

How do I make it show up properly?

See photo:


Hi,

My detective senses tell me that you have the stack bars option on and some of your bars have zero value, hence it’s showing the labels apparently twice, but in actuality once for every bar (just some of the bars don’t have any height).

Easiest solution would be to conditionally display labels. Clear the Format field and add the following code to the Template field:

#=data.value && data.value.toString().length ? data.value +' something' : ''  #