SetDataURLs method: Chart class

Syntax

SetDataURLs(Record_Name.Field_Name1, ...)

Description

Use the SetDataURLs method to specify a URL to be launched when a data point is clicked in the chart. The URL for each point must be a fully formed URL specified as a string. For example:

http://example.org/index.htm

The IsDrillable property must be set to True to enable clicking on data points within the chart.

Parameters

Parameter Description

Record_Name.Field_Name1, ...

Specify the name of the record and one or more fields on that record that contain the URLs for the data items for the chart.

Note: The number and order of fields specified must correspond to the order specified by the SetDataYAxis method.

Returns

None.

Example

&oChart.IsDrillable = True;
&oChart.SetDataURLs(PB_CHART_RECORD.PB_CHART_DESC);