> ## Content Index
> Fetch the complete content index at: https://kudithipudi.org/llms.txt
> Use this file to discover other available public pages before exploring further.

# Tracking my runs using Google charts
- URL: https://kudithipudi.org/tracking-my-runs-using-google-charts/
- Published: 2008-07-11T04:46:59.000Z
- Updated: 2008-07-11T04:46:59.000Z
- Description: I wrote a brief blurb, when Google came out with their Google Charts API. The API essentially allows you to represent your data visually by just...
- Author: admin
- Tags: HOWTO, Programming, Running, Technology, Uncategorized, Web, #wp, #wp-post, #Import 2026-08-23 02:32

I wrote a [brief blurb](https://kudithipudi.org/?p=203), when Google came out with their [Google Charts API](http://code.google.com/apis/chart/?ref=kudithipudi.org). The API essentially allows you to represent your data visually by just generating a URL.. I have been wanting to use this in real life for quite some time now and think I finally found a need :). I am going to be tracking my weekly runs with using this APIÂ moving forward.

Here’s a graphical representation of my runs for Week 5 of my traning for the Chicago marathon

![Week 5](http://chart.apis.google.com/chart?chtt=Week+5+Training&chts=FF0000,20&chdl=Miles&cht=bvs&chxt=x,y&chxl=0:|Mon|Tue|Wed|Thu|Fri|Sat|Sun|&chs=300x150&chd=t:0,0,3,0,0,0,10&chco=4d89f9,c6d9fd&chbh=20)

As you can see, I have been slacking off on my mid-week runs.

I used the following parameters to generate the graph

Type = cht (vertical bars)

Legend = chtt (Week 5 training)

Axis Values = chxl (Mon, Tue, Wed, Thur, Fri, Sat, Sun)

The URL I used to generate the image is [http://chart.apis.google.com/chart?chtt=Week+5+Training&chts=FF0000,20&chdl=Miles&cht=bvs&chxt=x,y&chxl=0:|Mon|Tue|Wed|Thu|Fri|Sat|Sun|&chs=300×150&chd=t:0,0,3,0,0,0,10&chco=4d89f9,c6d9fd&chbh=20](http://chart.apis.google.com/chart?chtt=Week+5+Training&chts=FF0000,20&chdl=Miles&cht=bvs&chxt=x,y&chxl=0:|Mon|Tue|Wed|Thu|Fri|Sat|Sun|&chs=300x150&chd=t:0,0,3,0,0,0,10&chco=4d89f9,c6d9fd&chbh=20&ref=kudithipudi.org)

I still need to figure out, how to show the values in the image and play with the ratio of the axis.

You can get all the information you need about this API by visiting this link [http://code.google.com/apis/chart/](http://code.google.com/apis/chart/?ref=kudithipudi.org)