To shows tooltip on series.

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
amol
Advanced
Posts: 231
Joined: Tue Mar 29, 2005 5:00 am

To shows tooltip on series.

Post by amol » Fri Feb 06, 2015 12:35 pm

Hi Steema Support,

Is there any way to show tooltip of series. As shown in attached image.
Marks.png
Marks
Marks.png (11.59 KiB) Viewed 4651 times
Please provide any solution asap.

Thanks in advance.

Regards
PlanoResearch

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: To shows tooltip on series.

Post by Narcís » Fri Feb 06, 2015 2:23 pm

Hi PlanoResearch,

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;     
You'll find a more elaborated example at All Features\Welcome !\Tools\Mark tips in the features demo available at TeeChart's program group.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply