In the click event handler for the active regions i'd like access to an identifier for the bar selected but I can't find a way to set this on a databound chart. There is an itemindex but that requires a known order for the displayed items. Are there any properties that I could use for this?
I'm binding to a list of custom objects and indicating which properties to use for the bar chart using:
I'm binding to a list of custom objects and indicating which properties to use for the bar chart using:
DurationReport.Series[0].DataYColumn =
"Duration";
DurationReport.PlotArea.XAxis.DataLabelsColumn =
"DisplayName";
Thanks