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!