Ah, I see. I thought you were talking about ClearGridIndex(); not to worry. Anyhow, it is interesting that this code:What I'm talking about, is the following code in the InternalSetGridIndex:
Code: Select all
public void Add(T item)
{
if (this._size == this._items.Length)
{
this.EnsureCapacity(this._size + 1);
}
this._items[this._size++] = item;
this._version++;
}
Code: Select all
public void set_Item(int index, T value)
{
if (index >= this._size)
{
ThrowHelper.ThrowArgumentOutOfRangeException();
}
this._items[index] = value;
this._version++;
}
The TeeChart for .NET team will make a debug build available before long, for sure, but at this time I cannot tell you exactly when that will be.Could you, please, make a debug build when you are done with implementing all these fixes and performing some testing? It would be nice for me to have an optimized version, as we are about to release our application one of the parts of which depends on the ColorGrid performance.