ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  href avalaible as char director property?
Posted by Gaston on Mar-06-2012 01:39
I need to have a reference in my image. Is it possible?

Tnak you

  Re: href avalaible as char director property?
Posted by Peter Kwan on Mar-07-2012 03:17
Hi Gaston,

Yes. You can make the entire chart image clickable as if it is a HTML link. The exact method depends on your programming language.

In certain programming language editions of ChartDirector, the chart image is an explicit <IMG> tag. For example, in the PHP edition of ChartDirector, the chart in a web page can be like:

<img src="simplebar.php">

where "simplebar.php" is the script that generates the chart. You can then make the entire chart image clickable just lilke making a normal image clickable - by using the <A> tag, lile:

<A HREF="aaaa.php"><img src="simplebar.php" border="0"></A>

Some programming langauge editions of ChartDirector may not have explicit <IMG> tags, but use "Web Controls", and different methods may be used. If you need further information, please let me known what is your programming language.

ChartDirector can also made individual chart objects (slices in a pie chart, bars in a bar chart, line segments in a line chart, etc) within a web page clickable. Please refer to the "Clickable Charts" section of the ChartDirector documentation for details.

Hope this can help.

Regards
Peter Kwan