Controls the mode in which OpenInNewWindow flags are assigned to the data points of the series.
The following code creates a bar chart with three bars and assings custom URLs and OpenInNewWindow flags to them.
' create the bar series
Dim bar As BarSeries = Chart.Series.Add(SeriesType.Bar)
bar.Add(12)
bar.Add(23)
bar.Add(18)
' configure urls
bar.Interactivity.UrlMode = SeriesURLMode.DataPoints
bar.Interactivity.URLs.Add("www.xceedsoft.com")
bar.Interactivity.URLs.Add("www.microsoft.com")
bar.Interactivity.URLs.Add("www.opengl.org")
' configure OpenInNewWindow flags
bar.Interactivity.OpenInNewWindowMode = SeriesOpenInNewWindowMode.DataPoints
bar.Interactivity.OpenInNewWindow.Add(False)
bar.Interactivity.OpenInNewWindow.Add(True)
bar.Interactivity.OpenInNewWindow.Add(True)
// create the bar series
BarSeries bar = Chart.Series.Add(SeriesType.Bar);
bar.Add(12);
bar.Add(23);
bar.Add(18);
// configure urls
bar.Interactivity.UrlMode = SeriesURLMode.DataPoints;
bar.Interactivity.URLs.Add("www.xceedsoft.com");
bar.Interactivity.URLs.Add("www.microsoft.com");
bar.Interactivity.URLs.Add("www.opengl.org");
// configure OpenInNewWindow flags
bar.Interactivity.OpenInNewWindowMode = SeriesOpenInNewWindowMode.DataPoints;
bar.Interactivity.OpenInNewWindow.Add(false);
bar.Interactivity.OpenInNewWindow.Add(true);
bar.Interactivity.OpenInNewWindow.Add(true);
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2