3

I am looking for an open source Thermometer that i can connect to a JSON or XML datasource and display this on my website.

The site is an asp.net site so javascript controls are not a problem.

My Googling didn't reveal very much at all.

Any suggestions are welcome.

Brian Webster
  • 30,033
  • 48
  • 152
  • 225
SetiSeeker
  • 6,482
  • 9
  • 42
  • 64

1 Answers1

1

I don't know of the exact solution. But you can play with jQuery progress bar as mentioned here jQuery sponsorship thermometer and Progress Bars & Controls

You can also look at the area51 site where they implement their progress bar just using div elements in the following way:

   <div title="39% (Commitment: 18%)" class="status-bar">
        <div class="grey-bar"></div>
        <div style="width: 39.5%;" class="color-bar"></div>
        <div class="ticks-left">define</div>
        <div class="ticks-middle">commit</div>
        <div class="ticks-right">beta</div>
    </div>
Barun
  • 2,542
  • 33
  • 35