Google Charts: Bar chart labels are reversed
Posted
by
True Soft
on Stack Overflow
See other posts from Stack Overflow
or by True Soft
Published on 2011-01-08T16:46:34Z
Indexed on
2011/01/08
16:54 UTC
Read the original article
Hit count: 372
google-charts
I create dinamically a chart for a website. I have a key/value map, I sort the values descending, and then create the url:
http://chart.googleapis.com/chart?
chs=400x200&cht=bhs&chbh=a&chdlp=l&chg=25,0&chma=0,0,0,5&chtt=Chart+test&
chxr=0,0,8,1&chds=0,8&chxt=t,y&
chd=t:8,5,3&
chxl=1:|Label_8|Label_5|Label_3
The values are set by chd=t:8,5,3
, and the labels are set by chxl=1:|Label_8|Label_5|Label_3
. However, in the chart image the labels are reversed.
I searched the documentation, but I didn't get why it is like this. Is it because I didn't set a value correctly, or is this the desired functionality?
I could reverse the label texts in chxl
from code to be displayed how I want. Is this the right way?
© Stack Overflow or respective owner