views:

146

answers:

3

screenshot

hi , i know there is a lot of chart,pie chart open source available in jquery ,

but can u tell me , what is the name of the below screen shot chart plugin ,

am looking free open source link for the below chart ,

Thanks

A: 

Why not making it by yourself. It can be made using a nested div with a length style that matched the value. I have something like that in my old projects, with only css.

Donny Kurnia
+2  A: 

Here's what you need: jQuery UI Progress Bar

By the way, you can do this without jQuery:

<div class="progess" style="width: 300px; background: silver">
    <div class="bar" style="width: 60%; background: blue"><!-- --></div>
</div>
TiuTalk
In my Database i have fields like YES,NO , Assume if the YES is 8 means my bar goes to 80% green color and 20% red color,
Bharanikumar
A: 

Could you provide an example of the nested div with length style that you mention, when length value is calculated at runtime? Also, how could this be implemented in an asp.net mvc application?

dkarantonis