or
I have heard that telerik charts are good.
But I have to show percentage (%) value in one bar
I just want one bar
For example if I use forms authentication and want to shows the mark percentage obtained by the logged in student.
In short I should be able to bind a percentage value to a bar.
if the width of the bar is 100px and i have to bind a value 60 the it should show 60px of width in one
I want to show it in horizontal bar.
Only one bar is needed at a time since there we show the logged in users percentage only
I
f the width of the bar is 100px and i have to bind a value 60 to the chart
then it should show 60px of width in one bright colour and rest(40px) in fade coulour.
| <telerik:RadSplitter ID="RadSplitter1" runat="server" Height="100%" Width="100%" Orientation="Horizontal" |
| BorderSize="0" ResizeMode="EndPane"> |
| <telerik:RadPane ID="rpTop" Height="80px" runat="server"> |
| <table width="100%"> |
| <tr> |
| <td style="white-space: nowrap"> |
| This is the left side of the header |
| </td> |
| <td width="100%" style="text-align: right; white-space: nowrap"> |
| This is the right side of the header |
| </td> |
| </tr> |
| <tr> |
| <td colspan="2"> |
| <telerik:RadTabStrip ID="RadTabStrip1" runat="server" ScrollChildren="true" > |
| <Tabs> |
| <telerik:RadTab text="Testing"></telerik:RadTab> |
| </Tabs> |
| </telerik:RadTabStrip> |
| </td> |
| </tr> |
| </table> |
| </telerik:RadPane> |
| <telerik:RadPane ID="rpContents" Height="100%" Width="100%" runat="server" Scrolling="none"> |
| Here is my content |
| </telerik:RadPane> </telerik:RadSplitter> |
| var grid; |
| function RowSelected(rowObject) { |
| var selRowName = this.GetCellByColumnUniqueName(rowObject, 'name'); |
| var selRowId = this.GetCellByColumnUniqueName(rowObject, 'id'); |
| } |
| function GridCreated() { |
| grid = this; |
| } |