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?
Last Tooltip is not visible
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 10
- Joined: Mon Jun 20, 2005 4:00 am
Tooltip is not visible
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?
{
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?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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:
BTW: Which exact TeeChart for .NET v2 build are you using?
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;
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 |
-
- Newbie
- Posts: 10
- Joined: Mon Jun 20, 2005 4:00 am
sorry..It does not become the method you to teach ..
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..
This appears to be being a v2.0 beta.(2.0.1992.14012)..
After Update.. It was solved..
thanks..