Hi Steema Support,
Is there any way to show tooltip of series. As shown in attached image.
Please provide any solution asap.
Thanks in advance.
Regards
PlanoResearch
To shows tooltip on series.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: To shows tooltip on series.
Hi PlanoResearch,
Sure, you just needs to use MarksTip tool, for example:
You'll find a more elaborated example at All Features\Welcome !\Tools\Mark tips in the features demo available at TeeChart's program group.
Sure, you just needs to use MarksTip tool, for example:
Code: Select all
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
line1.Pointer.Visible = true;
line1.FillSampleValues();
Steema.TeeChart.Tools.MarksTip marksTip1 = new Steema.TeeChart.Tools.MarksTip(tChart1.Chart);
marksTip1.Series = line1;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |