Hi,
We are facing a strange issue, but havent found a solution to this.
We are getting "Index was outside the bounds of the array" whenever we have Nerest Points and Mark Tips Tools are Active.
Error: Index was outside the bounds of the array.
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Error: Index was outside the bounds of the array.
The following code snippet works as expected:Quant wrote: We are facing a strange issue, but havent found a solution to this.
We are getting "Index was outside the bounds of the array" whenever we have Nerest Points and Mark Tips Tools are Active.
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
tChart1.Series.Add(typeof(Points)).FillSampleValues();
tChart1.Series.Add(typeof(Points)).FillSampleValues();
NearestPoint tool1 = new NearestPoint(tChart1.Chart);
tool1.Brush.Visible = false;
tool1.Series = tChart1[0];
MarksTip tool2 = new MarksTip(tChart1.Chart);
tool2.Series = tChart1[1];
}
Best Regards,
Christopher Ireland / 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 |
Re: Error: Index was outside the bounds of the array.
Hi,
We tried to reproduce the same problem at our end, but haven't got any success till now.
Any help on this would be greatly appreciated.
We tried to reproduce the same problem at our end, but haven't got any success till now.
Any help on this would be greatly appreciated.
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Error: Index was outside the bounds of the array.
Hello,
We would be delighted to help you, but as I am sure you can appreciate it is very difficult for us to do so without being able to reproduce your problem here.Quant wrote: We tried to reproduce the same problem at our end, but haven't got any success till now.
Any help on this would be greatly appreciated.
Best Regards,
Christopher Ireland / 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 |
Re: Error: Index was outside the bounds of the array.
Hi,
Fortunately we have found the solution by ourselves. We got the actual error location by which we resolved this error.
Fortunately we have found the solution by ourselves. We got the actual error location by which we resolved this error.