cowo Posted April 11, 2007 Report Share Posted April 11, 2007 Hello, I am using Chart FX Lite for ASP.NET and need help building a drilldown in a bar chart. On the x - Axis I have 12 months. I have a series with 2 members: actual and budget volume data. Following the documentation I can set the URL property on Chart.Series objects. So I can distinguish whether the user has clicked on an actual or on a budget bar. In my code snippet that is the yi request parameter. for (int i = 0; i < metaData.DataColumnCount; i++) { chart.Series.URL = chart.ResolveClientUrl("ReportingPage.aspx?yi=") + i + "ξ= <month id>"; } But how I can set an additional parameter (in my example xi) to determine on which month the user has clicked. Because I will see whether the user has clicked on Jan Actual or on Jan Budget or on Feb Actual. Thanks for any reply Cornelius Quote Link to comment Share on other sites More sharing options...
Frank Posted April 11, 2007 Report Share Posted April 11, 2007 What you need is to use macros in your Url. This is not possible in the lite version. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.