Search found 4 matches
- Tue Feb 15, 2011 3:23 am
- Forum: .NET
- Topic: Index was outside the bounds of the array
- Replies: 3
- Views: 3636
Re: Index was outside the bounds of the array
Hi Sandra, I will never reveal my license number again :-); thanks for pointing that out. I did not have a chance to create a simple project for you to reproduce the problem. I managed to find a solution though. I hope it could help others, as I saw some mentioning in the forums about similar except...
- Fri Feb 11, 2011 12:26 am
- Forum: .NET
- Topic: Index was outside the bounds of the array
- Replies: 3
- Views: 3636
Index was outside the bounds of the array
Hi, I’m using TeeChart Pro v2009/2010 for Visual Studio .NET in data acquisition. License Number : XXXXXXXX I have quite reproducible “Index was outside the bounds of the array” exception in TeeChart: Here is the scenario: 1. There are several FastLine Series and Points series in the TeeChart contro...
- Thu Feb 10, 2011 8:33 pm
- Forum: .NET
- Topic: Drawing vertical marks
- Replies: 3
- Views: 3438
Re: Drawing vertical marks
Hi Sandra, That worked, thanks. Here is my solution for that: internal class PointsEx : Steema.TeeChart.Styles.Points { public PointsEx(Steema.TeeChart.Chart c) : base(c) {} protected override void DrawMark(int index, string s, SeriesMarks.Position position) { Graphics3D g = Chart.Graphics3D; SizeF ...
- Tue Dec 14, 2010 2:48 am
- Forum: .NET
- Topic: Drawing vertical marks
- Replies: 3
- Views: 3438
Drawing vertical marks
Hi, Could you please help me with the following: I need to show marks oriented vertically at some fixed distance from data points. It seems that Points series with Marks oriented vertically would satisfy my needs. However, text lengths in the marks might vary significantly for different marks. I tri...