Large colorgrid and 'clicked' method
-
- Newbie
- Posts: 29
- Joined: Wed Mar 05, 2008 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi yves,
No, there's no news about that yet. I recommend you to be aware at this forum or subscribe to our RSS news feed for new release announcements and what's fixed on them.
Thanks in advance.
No, there's no news about that yet. I recommend you to be aware at this forum or subscribe to our RSS news feed for new release announcements and what's fixed on them.
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |
-
- Newbie
- Posts: 29
- Joined: Wed Mar 05, 2008 12:00 am
Hi, Narcis,
I just checked the release notes of the newest teechart version, but I couldn't find the defects code in the 'fixed' list. Is there any progress on the problem that I'm having? We've been waiting for this since february now, and my bosses would like to see some progress in this issue.
Kind regards
yves
I just checked the release notes of the newest teechart version, but I couldn't find the defects code in the 'fixed' list. Is there any progress on the problem that I'm having? We've been waiting for this since february now, and my bosses would like to see some progress in this issue.
Kind regards
yves
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hello,
I see that you've found a number of defects related to the Colorgrid series, all of which have been fixed except for defect TF02013239 which was entered into our tracking database on July 11th 2008. I have updated the severity of this defect from level 8 to level 11 (on a 16-level scale) which means that it will be of higher priority during the next round of maintenance release development.yves bourgeois wrote:I just checked the release notes of the newest teechart version, but I couldn't find the defects code in the 'fixed' list. Is there any progress on the problem that I'm having? We've been waiting for this since february now, and my bosses would like to see some progress in this issue.
Thank you!
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
-
- Newbie
- Posts: 29
- Joined: Wed Mar 05, 2008 12:00 am
-
- Newbie
- Posts: 29
- Joined: Wed Mar 05, 2008 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Yves,
No, just checked that this hasn't been fixed yet. However, this is a high priority item on the list so I recommend you to be aware at this forum for new release announcements and what's fixed on them.
Thanks in advance.
Yes, that's right.Guess you are back from your holiday. Back to work, then..
Do you have any news about the above mentioned problem?
No, just checked that this hasn't been fixed yet. However, this is a high priority item on the list so I recommend you to be aware at this forum for new release announcements and what's fixed on them.
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |
-
- Newbie
- Posts: 29
- Joined: Wed Mar 05, 2008 12:00 am
Hi, Narcis
I've just tried the new release for vs2005, and.. still no dice..
three things I've noticed in a sample project, which I will send to you once I've finished this post (I'm going to call it ColorGrid.rar)
1) when I switch on 'irregularGrid', I get an array out of bounds exception. Switch it off, and the grid renders beautifully
2) switching on 'inverted' for the vertical axes does something that I didn't expect, the graph is not rendered correctly, but this could be related to point number 3:
3) even though I have the property view3D for the chart set to false, it still displays in 3D mode..
Could you confirm these points, please?
Kind regards
yves bourgeois
I've just tried the new release for vs2005, and.. still no dice..
three things I've noticed in a sample project, which I will send to you once I've finished this post (I'm going to call it ColorGrid.rar)
1) when I switch on 'irregularGrid', I get an array out of bounds exception. Switch it off, and the grid renders beautifully
2) switching on 'inverted' for the vertical axes does something that I didn't expect, the graph is not rendered correctly, but this could be related to point number 3:
3) even though I have the property view3D for the chart set to false, it still displays in 3D mode..
Could you confirm these points, please?
Kind regards
yves bourgeois
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi yves,
I could reproduce what you reported and added this issue (TF02013422) to the list as a high priority item to be fixed ASAP.
I could reproduce what you reported and added this issue (TF02013422) to the list as a high priority item 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 |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 29
- Joined: Wed Mar 05, 2008 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi yves,
The problem seems to be populating ColorGrid using the Add method with x, y, z and colour arrays. Populaitng ColorGrid as shown below works fine here.
The problem seems to be populating ColorGrid using the Add method with x, y, z and colour arrays. Populaitng ColorGrid as shown below works fine here.
Code: Select all
Private Sub FillChart()
Dim xArray((width + 1) * height - 1) As Double
Dim yArray((width + 1) * height - 1) As Double
Dim zArray((width + 1) * height - 1) As Double
Dim colorArray((width + 1) * height - 1) As Color
Dim mcolorgrid As Styles.ColorGrid
Dim counter As Integer = 0
mcolorgrid = New Styles.ColorGrid(wcProfileViewer.Chart)
For x As Integer = 0 To width
For y As Integer = 0 To height - 1
'xArray(counter) = x
'yArray(counter) = 0
'zArray(counter) = y
'colorArray(counter) = Color.Blue
'counter += 1
mcolorgrid.Add(x, 0, y, Color.Blue)
Next
Next
'wcProfileViewer.Clear()
'mColorGrid = New Styles.ColorGrid(wcProfileViewer.Chart)
mcolorgrid.IrregularGrid = True
mColorGrid.Pen.Color = Color.Transparent 'Make the help lines of the colorgrid invisible
mColorGrid.Pen.Width = 0
mColorGrid.Chart.Axes.Left.Automatic = True
mColorGrid.Chart.Axes.Bottom.Automatic = True
'The vertical axis needs to represent its data in descending order
'Therefore, we invert it
mcolorgrid.GetVertAxis.Inverted = True
'mcolorgrid.Add(xArray, yArray, zArray, colorArray)
End Sub
Best Regards,
Narcís Calvet / 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 |