Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A line chart is required to be sent via email therefore I need an image api.

Using the Google Image Chart Api https://developers.google.com/chart/image/docs/chart_wizard I noticed that the given points must be available at equal positions in the x-axis.

To make it more clear with an example I mean if you have three points

(1,10), (2,30), (3,47)

then because the x-axis is spaced-equally (1,2,3) you get a correct graph

but what if you had

(1,10), (2,30), (9,47)

since you create the line chart simply by giving the y-values (10,30,47) you will not get the expected results!

Is such a fundamental feature not supported or I am simply not finding it?

Thank you!

PS: the line chart must be presented as recorded. No, I should not do any linear interpolations as a workaround!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.