I have two columns (Date, Distance) data in a Google spreadsheet. Now I want to display distance column using pie chart such that different slice of pie chart shows the sum of distances covered on different days (Sunday, ..., Saturday) of a week using Highcharts library.
Being a noob in web development, I have following queries:
- Do I need only jQuery to plot the required data?
- Although I figured out that I need to provide the reference of this spreadsheet in Highcharts library, but I do not know how to process this data. Do I need to process both of these columns and figure out which date corresponds to which day of the week and then compute sum? If yes, where should I write this logic?
It would be great if you can give me a dummy example to proceed further.