setHyperlink(col, hyperlink)

Adds hyperlinks to a chart dataset. Use setParameterField to specify values to pass as parameters in the link and setTargetFrame to specify the link's target frame. See the example below.

Parameter

col dataset index, first dataset is “1”

hyperlink string or

inetsoft.report.Hyperlink.Ref object

Example 1

var link = new inetsoft.report.Hyperlink("www.google.com", inetsoft.report.Hyperlink.WEB_LINK);

link.setParameterField("test", "Sales");

link.setTargetFrame("_blank");

setHyperlink(1, link);

Alternatively, you can pass all of this information within a single array as the second argument to the function. See the example below. The Boolean item in the array indicates whether the hyperlink targets a report/Viewsheet (true) or a web site (false).

Example 2

setHyperlink(1, ["report1", [["param1", "value1"], ["param2", "value2"],...]], true, "_blank")

See Also

Hyperlinks, in Report Design, for basic information on hyperlinks.

Using the onClick Handler, for other approaches to hyperlinking.

<< graph © 1996-2013 InetSoft Technology Corporation (v11.5) highlighted(name) >>