Last Tooltip is not visible

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
blueday321
Newbie
Newbie
Posts: 10
Joined: Mon Jun 20, 2005 4:00 am

Last Tooltip is not visible

Post by blueday321 » Wed Jan 03, 2007 4:10 am

When drawing the Chart with line,

Did the chart come to draw all ..

The last tooltip(It uses the Tools.SeriesHotspot) when it appears in the series is not visible.

It will do how and it will be able to solve this actual condition?

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

Post by Narcís » Wed Jan 03, 2007 10:13 am

Hi WISEfn,

I'm not able to reproduce the problem here using the latest maintenance release available at the client area. Which TeeChart version are you using? If the problem persists please send us a simple example project we can run "as-is" to reproduce the problem here.

You can post your files at news://www.steema.net/steema.public.attachments newsgroup.

Thanks in advance.
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

blueday321
Newbie
Newbie
Posts: 10
Joined: Mon Jun 20, 2005 4:00 am

Tooltip is not visible

Post by blueday321 » Thu Jan 04, 2007 12:59 am

public void ChartLoad()
{
this.WebChart1.Chart.Aspect.View3D = false;
this.WebChart1.Chart.Panel.Color = Color.White;

this.WebChart1.Chart.Walls.Back.Color = Color.White;

this.WebChart1.Chart.Legend.TextStyle = Steema.TeeChart.LegendTextStyles.XAndValue;

Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(this.WebChart1.Chart);
line1.FillSampleValues(25);

// img Map
Steema.TeeChart.Tools.SeriesHotspot seriesHotspot1 = new Steema.TeeChart.Tools.SeriesHotspot(this.WebChart1.Chart);
seriesHotspot1.HelperScript = Steema.TeeChart.Tools.HotspotHelperScripts.Annotation;
seriesHotspot1.MapAction = Steema.TeeChart.Styles.MapAction.Mark;
seriesHotspot1.Style = Steema.TeeChart.Styles.MarksStyles.Label;
}

When with above drawing the WebChart with same method,
The MouseOver when doing, the last of SeriesValue is not visible.

Me it uses the TeeChart For .Net v2.
why this condition occurs?

Image

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

Post by Narcís » Thu Jan 04, 2007 8:42 am

Hi WISEfn,

It works fine for me here using latest TeeChart for .NET v2 available at the client area and placing the mouse over the series at the right-most point of the series. It will help you seeing this if you add the line below to your code:

Code: Select all

		(WebChart1.Chart[0] as Steema.TeeChart.Styles.Line).Pointer.Visible = true;
BTW: Which exact TeeChart for .NET v2 build are you using?
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

blueday321
Newbie
Newbie
Posts: 10
Joined: Mon Jun 20, 2005 4:00 am

sorry..It does not become the method you to teach ..

Post by blueday321 » Fri Jan 05, 2007 1:17 am

uses the TeeChart Pro version 2 for Visual Studio.NET.
This appears to be being a v2.0 beta.(2.0.1992.14012)..

After Update.. It was solved..
thanks..

Post Reply