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

Message ListMessage List     Post MessagePost Message

  How to make tooltip which the value save as an array using asp.net?
Posted by Bill on Mar-10-2012 05:12
How to display a tooltip which the value save in array. This is a string type as remark using
asp.net.

  Re: How to make tooltip which the value save as an array using asp.net?
Posted by Peter Kwan on Mar-13-2012 00:53
Hi Bill,

You may use addExtraField. For example, in a simple bar chart, in C#, the code is like:

BarLayer layer = c.addBarLayer(myData, ....);
layer.addExtraField(myArrayOfToolTips);

.....

imageMap = c.getHTMLImageMap("", "", "title='{field0}'");

In the above, the {field0} represents the tooltips in the myArrayOfToolTips array.

If you need further help, would you mind to inform me the exact chart type you are trying to draw?

Regards
Peter Kwan