Jump to content
Software FX Community

possible for a chart image to display tooltips?


User (Legacy)

Recommended Posts

Hi,

Is it possible for a chart image to display tooltips ?

Response.Write(chart1.GetHtmlTag("600","300","Image"));

I tried to set ShowTips and the TipMask properties, but no luck.

chart1.ShowTips = true;

chart1.TipMask="l=%l k=%k s=%s S=%S L=%L";

They appear in the chart object alright.

Response.Write(chart1.GetHtmlTag("600","300","Auto"));

Thanks in advance.

Declan.

ChartData2.xml

Link to comment
Share on other sites

Does anyone know if this is possible ?  Any help greatly appreciated.

Thanks.

"Declan O'Leary" <declanol@hotmail.com> wrote in message

news:Z4kyWgQdCHA.2308@webserver1.softwarefx.com...

> Hi,

>

> Is it possible for a chart image to display tooltips ?

>

> Response.Write(chart1.GetHtmlTag("600","300","Image"));

>

> I tried to set ShowTips and the TipMask properties, but no luck.

> chart1.ShowTips = true;

> chart1.TipMask="l=%l k=%k s=%s S=%S L=%L";

>

> They appear in the chart object alright.

> Response.Write(chart1.GetHtmlTag("600","300","Auto"));

> Thanks in advance.

>

> Declan.

>

>

>

Link to comment
Share on other sites

If the browser connecting to the page is Internet Explorer you can get

tooltips on images using the following code

Chart1.ImgMap = ImgMap.TitleTip;

Note that this will generate an img map that contains title attribute for

the area tags and this is not supported in Netscape browsers (I have not

checked Netscape 7.0)

--

Regards,

JC

Software FX Support

"Declan O'Leary" <declanol@hotmail.com> wrote in message

news:G$Egg7ReCHA.2308@webserver1.softwarefx.com...

> Does anyone know if this is possible ? Any help greatly appreciated.

> Thanks.

>

> "Declan O'Leary" <declanol@hotmail.com> wrote in message

> news:Z4kyWgQdCHA.2308@webserver1.softwarefx.com...

> > Hi,

> >

> > Is it possible for a chart image to display tooltips ?

> >

> > Response.Write(chart1.GetHtmlTag("600","300","Image"));

> >

> > I tried to set ShowTips and the TipMask properties, but no luck.

> > chart1.ShowTips = true;

> > chart1.TipMask="l=%l k=%k s=%s S=%S L=%L";

> >

> > They appear in the chart object alright.

> > Response.Write(chart1.GetHtmlTag("600","300","Auto"));

>

> > Thanks in advance.

> >

> > Declan.

> >

> >

> >

>

>

Link to comment
Share on other sites

Thanks.  That's works perfectly.  I didnt know about the ImgMap method.

Thanks,

Dec.

"Software FX Support" <support@softwarefx.com> wrote in message

news:rEEmd1TeCHA.2308@webserver1.softwarefx.com...

> If the browser connecting to the page is Internet Explorer you can get

> tooltips on images using the following code

>

> Chart1.ImgMap = ImgMap.TitleTip;

>

> Note that this will generate an img map that contains title attribute for

> the area tags and this is not supported in Netscape browsers (I have not

> checked Netscape 7.0)

>

>

> --

> Regards,

>

> JC

> Software FX Support

> "Declan O'Leary" <declanol@hotmail.com> wrote in message

> news:G$Egg7ReCHA.2308@webserver1.softwarefx.com...

> > Does anyone know if this is possible ? Any help greatly appreciated.

> > Thanks.

> >

> > "Declan O'Leary" <declanol@hotmail.com> wrote in message

> > news:Z4kyWgQdCHA.2308@webserver1.softwarefx.com...

> > > Hi,

> > >

> > > Is it possible for a chart image to display tooltips ?

> > >

> > > Response.Write(chart1.GetHtmlTag("600","300","Image"));

> > >

> > > I tried to set ShowTips and the TipMask properties, but no luck.

> > > chart1.ShowTips = true;

> > > chart1.TipMask="l=%l k=%k s=%s S=%S L=%L";

> > >

> > > They appear in the chart object alright.

> > > Response.Write(chart1.GetHtmlTag("600","300","Auto"));

> >

> > > Thanks in advance.

> > >

> > > Declan.

> > >

> > >

> > >

> >

> >

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...