EnableHyperlinks: Boolean;
The EnableHyperlinks property determines whether chart data series can be displayed as hyperlinks.
The property has the following values:
True. Data series can function as hyperlinks.
False. Data series cannot function as hyperlinks.
Executing the example requires a form with a button named Button1 on the form, the ChartBox component and the UiChart component that is a data source.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
Chart: IChart;
Begin
Chart:= UiChart1.Chart;
Chart.InteractiveMode := ChartInteractiveMode.Hyperlinks;
Chart.EnableHyperlinks := True;
End Sub Button1OnClick;
After clicking Button1 button, data series function as hyperlinks.
See also: