Search found 39 matches
- Tue Apr 26, 2011 11:15 am
- Forum: .NET
- Topic: Question on Contour series
- Replies: 4
- Views: 9061
Re: Question on Contour series
Hello Sandra, No it doesn't help, the link you gave me describe the code I posted above. I'll try to be more clear about what I want. I'm trying to use the contour serie to display data added every let's say, 10 X axis units, 7 Y axis units below 90, and 5 Y axis unit above 90. X axis maximum is 360...
- Thu Apr 21, 2011 3:00 pm
- Forum: .NET
- Topic: Question on Contour series
- Replies: 4
- Views: 9061
Question on Contour series
Hello, I would like to use a contour serie in my software, using the filled levels property, but I'm not sure it's possible. Is it possible to use this serie with uneven data ? What I mean is my Xdata does not increase one by one for example : m_ContourData.IrregularGrid = true; m_ContourData.FillLe...
- Wed Mar 30, 2011 10:48 am
- Forum: .NET
- Topic: Zooming on ColorGrid leads to corrupted display
- Replies: 14
- Views: 19633
Re: Zooming on ColorGrid leads to corrupted display
Hello Sandra,
My bad, I haven't found the previous bug report about this. I've tested the evaluation version and this is has been nicely fixed. Sweet !
ps : Do you have any idea when the evaluation version is going to be released as an official version ?
Kind regards
My bad, I haven't found the previous bug report about this. I've tested the evaluation version and this is has been nicely fixed. Sweet !
ps : Do you have any idea when the evaluation version is going to be released as an official version ?
Kind regards
- Wed Mar 30, 2011 6:59 am
- Forum: .NET
- Topic: Working with high/a lot of values with ColorGrid
- Replies: 11
- Views: 14645
Re: Working with high/a lot of values with ColorGrid
Hello Sandra, I've updated my version to the last build. Surprisingly (for me) your code does work fine, but the problem seems to be slightly different, as this one does not work : Random y = new Random(); for (int x = 0; x < 100; x++) { DateTime dt = DateTime.Now; for (int z = 0; z < 100; z++) { //...
- Tue Mar 29, 2011 2:07 pm
- Forum: .NET
- Topic: Zooming on ColorGrid leads to corrupted display
- Replies: 14
- Views: 19633
Re: Zooming on ColorGrid leads to corrupted display
By the way, working on smaller sets of data I have a different kind of corruption, if zooming too much the color seem to be chosen randomly, if dezooming everything is back to normal. This happens both if zooming is done at the same time than updating, or at a different time.
- Tue Mar 29, 2011 1:55 pm
- Forum: .NET
- Topic: Zooming on ColorGrid leads to corrupted display
- Replies: 14
- Views: 19633
Zooming on ColorGrid leads to corrupted display
Hello, I'm currently working with a ColorGrid having quite some values, around 600000 in this example but the problem is reproductible with less values than that. When displaying the full range of the Y axis, in order to have every value displayed, everything is fine, but when trying to zoom or tryi...
- Tue Mar 29, 2011 1:17 pm
- Forum: .NET
- Topic: Working with high/a lot of values with ColorGrid
- Replies: 11
- Views: 14645
Re: Working with high/a lot of values with ColorGrid
Hello Sandra,
I'm using TeeChart for .NET v3 (3.5.3470.15475). I just tried adding a 24 000 value at runtime, and it does crash (m_Data.Add(index, gain, 0, FindColor(gain)); with index = 24000).
Kind regards
I'm using TeeChart for .NET v3 (3.5.3470.15475). I just tried adding a 24 000 value at runtime, and it does crash (m_Data.Add(index, gain, 0, FindColor(gain)); with index = 24000).
Kind regards
- Mon Mar 28, 2011 10:19 am
- Forum: .NET
- Topic: Working with high/a lot of values with ColorGrid
- Replies: 11
- Views: 14645
Re: Working with high/a lot of values with ColorGrid
Hello Sandra, Yes it does reproduce my problem (any date bigger than now is way bigger than 20 000, which is the number making the chart crash). But here is even simpler : tChart1.Aspect.View3D = false; series1 = new Steema.TeeChart.Styles.ColorGrid(tChart1.Chart); series1.IrregularGrid = true; seri...
- Fri Mar 25, 2011 11:04 am
- Forum: .NET
- Topic: Working with high/a lot of values with ColorGrid
- Replies: 11
- Views: 14645
Re: Working with high/a lot of values with ColorGrid
Hello Sandra, Unfortunately I still have some troubles. I eventually found out about the DateTime property and that for ColorGrid the Y and Z values are kind of "permuted". About the DateTime, my problem is now that no Add() functions seems to be existing for adding DateTime in another row than X, s...
- Thu Mar 24, 2011 9:14 am
- Forum: .NET
- Topic: Working with high/a lot of values with ColorGrid
- Replies: 11
- Views: 14645
Working with high/a lot of values with ColorGrid
Hello, I'm stumbling on a problem for a day now, I'm trying to work with a ColorGrid to display some data. Here is the problem : first I can't add a value with an x value bigger than 19999, otherwise the chart just go mad (big red cross in the middle of it). I haven't try with z values but I'm expec...
- Fri Jan 16, 2009 12:37 am
- Forum: .NET
- Topic: How get rid of the border in Tchart.
- Replies: 4
- Views: 8092
- Thu Jan 15, 2009 4:12 am
- Forum: .NET
- Topic: How get rid of the border in Tchart.
- Replies: 4
- Views: 8092
How get rid of the border in Tchart.
Hi, I want to get rid of the border in the tee chart. I tried the below options, but they don't work either! m_MyPlot.TChart.BorderBrush = System.Windows.Media.Brushes.Transparent; m_MyPlot.TChart.BorderThickness = new Thickness(0); I did try setting BorderBrush to Transparent and BorderThickness to...
- Fri Dec 05, 2008 3:59 am
- Forum: .NET
- Topic: Polar chart - axes not aligned
- Replies: 14
- Views: 15062
- Tue Dec 02, 2008 1:16 am
- Forum: .NET
- Topic: Polar chart - axes not aligned
- Replies: 14
- Views: 15062
- Fri Nov 28, 2008 12:24 am
- Forum: .NET
- Topic: Polar chart - axes not aligned
- Replies: 14
- Views: 15062
Thanks Narcís Calvet, I found the problem. I was setting View3D to false at just after creation of the chart, but now I moved that setter of View3D to false as very last statement of the code and it works fine. I got this idea from the example you gave above that you are setting View3D to false at r...