Text format is the only option if you do not want to scale your input values yourself.
http://code.google.com/apis/chart/docs/data_formats.html#scaled_values If you're comfortable with implementing the code necessary to convert your actual values (e.g. 86201) into their extended encoding counterpart, then custom scaling shouldn't be an issue... // Javascript NewValueWithinExtendedEncodingRange = Math.ceil(4095 * OriginalValue / 86400) -- 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.
