views:

40

answers:

3

I'm doing a bar chart with google, and my results look like this (link).

If you see that the graph is not beautiful enough. What is the parameter that can reduce the value on the x axis.

Thank you in advance.

+2  A: 

I would take a look at this link from google regarding Data Scaling. I am not sure of your data set format so the actual answer to your problem will depend on that.

i.e. - I added "&chds=0,10" after your "chd=" statment and got a better looking chart. Example.

pattertj
+1  A: 

Check out the help file here.

Decide whether your data must be scaled to fit your chart. Different formats support different ranges of values. You might want to scale your data so that it spans the full range of values allowed by your format, to make differences more obvious. You can do this either by scaling your data to fit within the data format that you use, or you can use text formatting with custom scaling.

Bryan
+3  A: 

try this one

I just added chds=0,10 to scale it properly. That basically sets the data range to 0 min, 10 max.

SB