Page 1 of 1

Last Tooltip is not visible

Posted: Wed Jan 03, 2007 4:10 am
by 9637229
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?

Posted: Wed Jan 03, 2007 10:13 am
by narcis
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.

Tooltip is not visible

Posted: Thu Jan 04, 2007 12:59 am
by 9637229
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

Posted: Thu Jan 04, 2007 8:42 am
by narcis
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?

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

Posted: Fri Jan 05, 2007 1:17 am
by 9637229
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..