New to Telerik UI for WinForms? Start a free 30-day trial
Open a WebPage in Response to a Click
Updated over 6 months ago
To open a web page in response to a click of an item, you can use the ActiveRegion Url property and the RadChart.Click event, whose ChartClickEventArgs contains the item clicked:
C#
void radChart1_Click(object sender, Telerik.Charting.ChartClickEventArgs args)
{
if (args.SeriesItem.Index == 2)
{
Process.Start(args.SeriesItem.ActiveRegion.Url);
}
}