I found following example which integrates Column Series with PivotGrid
http://demos.telerik.com/aspnet-ajax/pivotgrid/examples/applicationscenarios/chartintegration/defaultcs.aspx
I have implemented this successfully.
I am unable to integrate Pie Chart with PivotGrid. Is there any demo available for same?
Hi, there!
I have a pivot grid with a column field which is Types of budgets, there are 3 in the SQL query: initial budget, real budget, executed value. I want two calculated fields, namely the percentage difference between the initial budget vs real budget and executed value. The result would be something like:
INIT REAL Dif% EXEC Dif%
$1000 $900 -10% $1100 +10%
Is there a way to do it with custom calculated fields?
Thanks a lot!

Hi,
I'm following this demo :
http://demos.telerik.com/aspnet-ajax/combobox/examples/overview/defaultvb.aspx
My binding is correct but the item template table is always showing "Loading..." without displaying any result no matter what.
Even If I remove the table inside inside ItemTemplate
<ItemTemplate>
</ItemTemplate>​
I always get "Loading..."
I'm using Telerik version 2014.1.225.35
Any help please ?
Thanks

hi all
i have a grid view and i add a
<telerik:GridButtonColumn ButtonType="ImageButton" ImageUrl ="../App_Themes/Grid/Images/​detal.gif" CommandName="Dtl" HeaderText ="unit detail" FilterControlAltText="Filter Dtl column" UniqueName="Dtl" >​
i want to open a window to view the detail in page with grid datakeyname itemcode just like this NavigateUrl ="Default3.aspx?ItemCode"= itemcode
please help
I need to create a HtmlGraph like the attached image.
In the Yaxis I need to show when value =1 => "No Cumplio" and value=2 =>"Cumplio".
How I can do this?
There are only 2 values for Yaxis 1 or 2.
thanks
Hi,
I'm implementing a RadGrid inside the RadDataForm. The purpose is to collect a list of objects that are tied to the main object that the dataform is collecting information from. I'm taking in this subgroup with textboxes and then store it in a list of objects in session and posted back onto the RadGrid. However, the problem I'm running into currently is that I'm also trying to incorporate the RadGrid InPlace edit mode, and whenever I go to try and edit the object, the grid disappears. However, it seems like if I refresh it, it does go into edit mode but will not display the values in the columns. I've configured the NeedDataSource on the RadGrid but it doesn't seem to call it on the pageload or postback functions even though I specifically tell it to call these functions in the front-end with OnNeedDataSource and so forth. I've also tried to explicitly call OnItemCreated and OnItemDataBound to see if it hits the code behind but the grid doesn't seem to be referencing those functions either. What's the best approach to implement this functionality? I know you can reference the naming container of the object but I can't seem to get the RadGrid to reference its naming container, so not sure what I'm doing wrong.
I am working on Gantt Chart but I have a problem. For my application need I have to add a checkbox Column in left of Gird Part. Also want to an option to select any task by clicking on a task title. So after clicking on this Task title I have to get the task Id from server side code. After getting this Id I have to do some operation and hen want to rebind the chart. I did it in RadGrid and RadTreeList and t working okay. But I want to visualize this using Gantt Chart.
Please see attached screen.
Is it possible to make
Hi,
I bound a radGrid to ObjectDataSource control that returns list of User objects. One of User properties is PHONE which returns user's phone number or NULL as string.
I bound the PHONE property to a grid bound column, as follow:
| <telerik:GridBoundColumn |
| DataField="PHONE" |
| UniqueName="PHONE" |
| HeaderText="Phone" |
| DataFormatString="{0:###-###-####}"> |
| </telerik:GridBoundColumn> |
however, it seem that the value is not formmatted...what I'm doing wrong?
Avidan

I have a form with a rad button, with single click enabled.
On that form I have a RadProgressArea with the cancel button.
When the cancel button is pressed on the RadProgressArea - The RadButton doesn't re-enable.
How do I get it to re-enable, I tried the code below, but the button remains in it's disabled state.
If Not Response.IsClientConnected Then 'Cancel button was clicked or the browser was closed, so stop processing radbutton.enabled = true exit subend if