If I draw more than 13 polygons, the polygons don't draw on the position that I want.
there is an example image with 13 polygons on the screen:
this map was created with this simple code:
Code: Select all
For i As Integer = 1 To 13
Dim X() As Integer = {i, i + 1, i + 1, i}
Dim Y() As Integer = {1, 1, 2, 2}
Map2.AddShape(X, Y, "")
Next i
there is the code:
Code: Select all
For i As Integer = 1 To 14
Dim X() As Integer = {i, i + 1, i + 1, i}
Dim Y() As Integer = {1, 1, 2, 2}
Map2.AddShape(X, Y, "")
Next i
My release is:
Release Notes 12th February 2009
TeeChart.NET version 3
Build 3.5.3330.21114