when i am sorting barH chart by asc , and i get x values 50 60 70 80 90 100 percent, i have this sorting (100 50 60 70 80 90 ) ??? why the first is 100 when 100 must be in the end ?? it’s a bug ?
The default sorting rule is “string”. If you want to use “int” sorting, you should set it in the third parameter of the sort() method:
chart.sort("#value#",“asc”,“int”);