The other option you have, EON, is to manually normalize your data to range from 0 to 100. Subtract your minimum value from the dataset and divide the results by (maximum_result/100). So, for example, if your data range from 1770425 to 1867894 you would subtract 1770425 from every value. The largest result is going to be 1867894-1770425 = 97469. Now divide all your shifted values by 974.69. Your maximum value will be 100, your minimum will be 0, and the remaining values will be in between.
On Tue, Oct 19, 2010 at 6:42 AM, KeithB <[email protected]> wrote: > Hi EON, > > The FAQ entry on this is misleading--you can't just use the CHXR > parameter to display y-values over 100. > > Take a look at the following page of the documentation: > http://code.google.com/apis/chart/docs/data_formats.html > > Especially the > > - Overview, > - Basic Text Format, > - Text Format with Custom Scaling, and > - Data Scaling and Axis Scaling > > sections. > > Quick answer: add "chds=1770425,1867894" to your URL. > > Cheers, > Keith > > -- > You received this message because you are subscribed to the Google Groups > "Google Chart API" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-chart-api?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Chart API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-chart-api?hl=en.
