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.

Thanks

link|improve this question

64% accept rate
1  
are you looking for a graphic or the actual hardware? – Mark Elliot Feb 23 '11 at 5:08
I am looking for a visual control that i can add to a page and use it to display data from a DB in a graphical format. – SetiSeeker Feb 23 '11 at 5:11
feedback

1 Answer

up vote 0 down vote accepted

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>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.