Jump to content
Software FX Community

Tooltips on "Image"


User (Legacy)

Recommended Posts

Hello,

I am trying to have mouseovers/tool tips on my ChartFX graphs (that are set

to "Image") with the following code:

ChartFX.ShowTips = True

ChartFX.TipMask = "%s"

Unfortunately I cant see the tooltips when I generate the graph as an

"Image". They work just fine when the graph is set to "Auto".

Am I missing out on something?

Thanks a lot. I appreciate all your help.

AA

Link to comment
Share on other sites

Thank you very much!!

I have been trying to get the tool tips working for a long time without

realizing I needed to assign ImgMap for ChartFX 5.5. With this,I dont even

need to turn ToolTips to True. That statement works like magic! Thank you.

AA

"SoftwareFX Support" <noreply@softwarefx.com> wrote in message

news:TpSK7i1nEHA.416@webserver3.softwarefx.com...

> By looking at a previous post from you I was able to determine you are

using

> Chart FX 5.5.

>

> You need to assign:

>

> ChartFX.ImgMap = CHART_MAP_TITLETIP

>

> --

> FP

> Software FX

>

>

Link to comment
Share on other sites

Sorry to bother you again but I have two more questions on the tooltips.

1. I am generating the same graph thrice (with different data points) on my

webpage. The tool tips are not changing for each graph. The 2nd and 3rd

graphs that follow the 1st graph are showing the same tooltips as the 1st

though the data points are different.

2. I am plotting 4 data points (as 4 series) in a bar graph and need to

mutiply 2 data points by -1 for them to be plotted on the negative axis (my

data axis is from +100 to -100). This is causing the tooltips for these 2

data points to be negative but I want them to show up as positive. Is there

any way I can do this?

Thank you very much.

AA

"Ajantha Attaluri" <ssriniu@hotmail.com> wrote in message

news:UgLnmA%23nEHA.416@webserver3.softwarefx.com...

> Thank you very much!!

> I have been trying to get the tool tips working for a long time without

> realizing I needed to assign ImgMap for ChartFX 5.5. With this,I dont even

> need to turn ToolTips to True. That statement works like magic! Thank you.

> AA

>

> "SoftwareFX Support" <noreply@softwarefx.com> wrote in message

> news:TpSK7i1nEHA.416@webserver3.softwarefx.com...

> > By looking at a previous post from you I was able to determine you are

> using

> > Chart FX 5.5.

> >

> > You need to assign:

> >

> > ChartFX.ImgMap = CHART_MAP_TITLETIP

> >

> > --

> > FP

> > Software FX

> >

> >

>

>

Link to comment
Share on other sites

1) Make sure you assign a UNIQUE name to each chart otherwise the image maps 

will get mixed up.

The ID comes from GetHtmlData:

<%= chart1.GetHtmlData(100,100,"PNG","Chart1")%>

<%= chart2.GetHtmlData(100,100,"PNG","Chart2")%>

2) Negative values will show up as negative values, there is no way of

showing something they are not.

--

FP

Software FX

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...