Jump to content
Software FX Community

Drilldown


cowo

Recommended Posts

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

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...