version 2.02 does not support multiple colorgrids

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
TEh
Newbie
Newbie
Posts: 5
Joined: Wed Jun 22, 2005 4:00 am

version 2.02 does not support multiple colorgrids

Post by TEh » Wed Jan 18, 2006 11:40 am

I'm trying to display several colorgrid series in one chart. This worked perfectly with v2 evaluation. With v2.02 only one of the series will be visible even though the axes show that the second series is also there, but not shown.

Code: Select all


        Dim i, j, c As Integer

        Dim xvalues(49) As Double
        Dim yvalues(49) As Double
        Dim zvalues(49) As Double
        Dim x2values(49) As Double
        Dim y2values(49) As Double
        Dim z2values(49) As Double


        For i = 0 To 9
            For j = 0 To 4
                c = 5 * i + j
                xvalues(c) = i
                zvalues(c) = j
                yvalues(c) = c
            Next
        Next

        Dim cc1 As New Steema.TeeChart.Styles.ColorGrid
        cc1.Add(xvalues, yvalues, zvalues)
        TChart1.Series.Add(cc1)

        For i = 0 To 9
            For j = 0 To 4
                c = 5 * i + j
                x2values(c) = i
                z2values(c) = j + 5
                y2values(c) = c + 5
            Next
        Next

        Dim cc2 As New Steema.TeeChart.Styles.ColorGrid
        cc2.Add(x2values, y2values, z2values)
        TChart1.Series.Add(cc2)
        TChart1.Aspect.View3D = False


Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Jan 23, 2006 10:24 am

Hi TEh,

Thanks for your report. I've been able to reproduce it here and this problems seems caused by some modification done for the latest releases. I've added it to our defect list to be fixed ASAP.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

TEh
Newbie
Newbie
Posts: 5
Joined: Wed Jun 22, 2005 4:00 am

Post by TEh » Mon Jan 23, 2006 10:28 am

Thanks!

Post Reply