This RadGrid is very new to me, having just begun my evaluation of the product yesterday. I may be way off in everything you see below... :-)
I have a RadGrid with a NestedViewTemplate. Inside of that, I have a RadTabStrip that deep inside it has three RadPageViews. No problem there. One of them looks like this:
Using a different charting component is not an option at the moment. If I use the charting-component in a "bare-bones" asp.net page, i would then generate and display the graph using this code:
But.... when using Rad controls, how do I get a reference to the "myChartControl" control, and how do I pass the selected value from my RadGrid to the code, so I can use the SelectedValue as a parameter for my chartHelper.GetChartWeb method?
And how do I "delay" invokation of the GetChartWeb method, so the chart is generated on demand when a user clicks the "chart" tab of my tabstrip?
So far very impressed by what's possible with the RadGrid, but growing DEpressed with still being exactly where I was 24hrs ago. Stuck. :-(
Hoping all of this makes sense to someone :-))
J.Jespersen
I have a RadGrid with a NestedViewTemplate. Inside of that, I have a RadTabStrip that deep inside it has three RadPageViews. No problem there. One of them looks like this:
| <telerik:RadPageView runat="server" ID="pvGraph" > |
| <chart:WebChartViewer ID="myChartControl" runat="server" Width="400px" Height="300px" /> |
| </telerik:RadPageView> |
Using a different charting component is not an option at the moment. If I use the charting-component in a "bare-bones" asp.net page, i would then generate and display the graph using this code:
| Dim myChartHelper As chartHelper = New chartHelper(dbConnectionString) |
| myChartHelper.GetChartWeb(myChartControl, gridView1.SelectedValue) |
But.... when using Rad controls, how do I get a reference to the "myChartControl" control, and how do I pass the selected value from my RadGrid to the code, so I can use the SelectedValue as a parameter for my chartHelper.GetChartWeb method?
And how do I "delay" invokation of the GetChartWeb method, so the chart is generated on demand when a user clicks the "chart" tab of my tabstrip?
So far very impressed by what's possible with the RadGrid, but growing DEpressed with still being exactly where I was 24hrs ago. Stuck. :-(
Hoping all of this makes sense to someone :-))
J.Jespersen