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

Message ListMessage List     Post MessagePost Message

  Gantt Chart X Tooltip
Posted by Steven on Mar-09-2016 17:26
Attachments:
In the picture
How to get X label display tooltip when mouse move in red box?
test.png

  Re: Gantt Chart X Tooltip
Posted by Peter Kwan on Mar-10-2016 01:51
Hi Steven,

You may use Axis.getHTMLImageMap to create an image map for the vertical axis labels. For example:

'An array of text strings containing the tooltips for the axis labels
Call c.addExtraField(toolTipArray)

......


viewer.ImageMap = c.getHTMLImageMap("clickable", "", _
        "title='{xLabel}: {top|mmm dd, yyyy} to {bottom|mmm dd, yyyy}'") & _
        c.xAxis().getHTMLImageMap("", "", "title='{field0}'")

Hope this can help.

Regards
Peter Kwan