Page 1 of 1

To shows tooltip on series.

Posted: Fri Feb 06, 2015 12:35 pm
by 9526439
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 4652 times
Please provide any solution asap.

Thanks in advance.

Regards
PlanoResearch

Re: To shows tooltip on series.

Posted: Fri Feb 06, 2015 2:23 pm
by narcis
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.