score:1

Accepted answer

the reason why that space is appearing, is because, you have an empty label in your labels array.

labels: [
   ["aaa", ' ff'],
   ["aa", " ddd"], "ee eeee", ""
                              ^^
],

remove that empty label (if not necessary) and you will be good to go.

here is the working code on jsfiddle


More Query from same tag