Hi Brian,
To accomplish this task, you should do the following:
1. Set the ChartControl.RuntimeSelection property to True.
2. Handle the ChartControl.ObjectSelected and ObjectHotTracked events as follows:
private void chartControl1_ObjectSelected(object sender, DevExpress.XtraCharts.HotTrackEventArgs e) {
if (e.Object is Series)
e.Cancel = false;
else
e.Cancel = true;
}
This should do the trick ;-)
@.
R&D, .NET Team.
PS. If you wish to receive direct assistance from our Support Team, use Support Center at http://www.devexpress.com/sc.