Search found 55 matches
- Mon Jan 18, 2010 12:54 pm
- Forum: .NET
- Topic: CustomPoint Serialization Error
- Replies: 2
- Views: 4979
CustomPoint Serialization Error
Hello, I'm using VS2008 SP1 and TeeChart 4.0.2009.28593 I've created a control using TeeChart, but when adding the control to a form I get an error with CustomPoint -- "CustomPoint is not marked as serializable. I've created a small example that shows the problem. Drag the "Tester" tool from the too...
- Wed Sep 02, 2009 2:58 pm
- Forum: .NET
- Topic: Fastline DrawAllPoints Clarification
- Replies: 10
- Views: 14351
Re: Fastline DrawAllPoints Clarification
Thanks Yeray for that example. It seems to work well. I'll do some further testing. Can you explain how DisplayedPointCount works? There's no documentation at all on it in the help file. Is it the number of data points the function down samples to? So, in your example code and for my 1300 data point...
- Wed Sep 02, 2009 9:31 am
- Forum: .NET
- Topic: Fastline DrawAllPoints Clarification
- Replies: 10
- Views: 14351
Re: Fastline DrawAllPoints Clarification
Hi Narcis, I've created a small example for you. It's created using VS2008 and TeeChart 4.0.2009.28593. This example only has 1300 data points but it shows the problem well. Just resize the main form and you will see the graph change. I'll now look at the Down Sampling example you suggested. Thanks
- Thu Aug 27, 2009 11:43 am
- Forum: .NET
- Topic: Fastline DrawAllPoints Clarification
- Replies: 10
- Views: 14351
Re: Fastline DrawAllPoints Clarification
OK, I'll take a look at that example.
Also, I'll create a simple project. I'll do it next week as I'm very busy at the moment.
Best regards
Also, I'll create a simple project. I'll do it next week as I'm very busy at the moment.
Best regards
- Thu Aug 27, 2009 11:05 am
- Forum: .NET
- Topic: Fastline DrawAllPoints Clarification
- Replies: 10
- Views: 14351
Re: Fastline DrawAllPoints Clarification
Hi Narcis, Thanks for your reply. Our data is collected in real time. 1 to 10 points per second for a total time of up to 1 hour. I've attached an image to show you some typical data. Each series may have 2000 - 60000 data points. If I use DrawAllPoints=false then some of those spikes on the green s...
- Wed Aug 26, 2009 12:59 pm
- Forum: .NET
- Topic: Fastline DrawAllPoints Clarification
- Replies: 10
- Views: 14351
Re: Fastline DrawAllPoints Clarification
That's not good. I was hoping it was the second. The graph will not accurately represent the data. It will appear to the user that some data points are lost. Then as they zoom in the data will change, only to disappear again when they zoom out. What's the time schedule for correcting this bug. Thanks
- Tue Aug 25, 2009 4:25 pm
- Forum: .NET
- Topic: Fastline DrawAllPoints Clarification
- Replies: 10
- Views: 14351
Fastline DrawAllPoints Clarification
Hello, I hope someone from Steema can clarify what the DrawAllPoints = false property does in the Fastline series. The help file installed with version 3.5 and 4.0 says, "When false, it only draws the first point at any X pixel location" However, on the real-time article it states that; it "groups t...
- Wed Jul 01, 2009 3:23 pm
- Forum: .NET
- Topic: Real time update problems
- Replies: 4
- Views: 7499
Re: Real time update problems
Hello, I've modified my code to match yours. I've added the AutoRepaint false/true and the tChart.Refresh() line after adding all the points. I've removed the RefreshSeries line. This seems to have improved things. I've been testing it all afternoon and no freezes yet. I'll continue testing over the...
- Wed Jul 01, 2009 11:59 am
- Forum: .NET
- Topic: Real time update problems
- Replies: 4
- Views: 7499
Re: Real time update problems
Some extra information, in case it helps:
The Steema.TeeChart.TChart.AfterDraw event is not fired when the chart freezes.
Thanks
The Steema.TeeChart.TChart.AfterDraw event is not fired when the chart freezes.
Thanks
- Wed Jul 01, 2009 9:29 am
- Forum: .NET
- Topic: Real time update problems
- Replies: 4
- Views: 7499
Real time update problems
Hello, I'm having major problems using the FastLine series to display real time data. The chart keeps on freezing. Data seems to be adding to the chart OK, but every so often the display freezes. Forcing a refresh by resizing the window causes the data to display correctly, only for the same thing t...
- Wed Jun 03, 2009 4:06 pm
- Forum: .NET
- Topic: axis visibility
- Replies: 1
- Views: 4022
axis visibility
hey, I've got a normal tchart with one line added to it and filled with sample values, and the legend has checkboxes. Now if i uncheck the checkbox, the line disappears, and so do the axis labels and title. At this point, is there any way of telling if this has happened, i.e the labels/title or even...
- Tue May 26, 2009 3:24 pm
- Forum: .NET
- Topic: custom axis title not disappearing?
- Replies: 1
- Views: 3956
custom axis title not disappearing?
Hey, I've created a custom axis and 'attached' a series to it, but when I click on the legend to turn it off (via the checkbox), it doesn't seem to turn the axis title off? public Form1() { InitializeComponent(); tChart1.Aspect.View3D = false; tChart1.Legend.CheckBoxes = true; Steema.TeeChart.Axis c...
- Wed May 20, 2009 9:04 am
- Forum: .NET
- Topic: DrawLine disappearing on zoom
- Replies: 1
- Views: 4489
DrawLine disappearing on zoom
Hey, I've got a DrawLine tool on my chart whereby i'm manually giving it coordinates to draw with. Trouble is, when I zoom in, it disappears. Can you reproduce?? public Form1() { InitializeComponent(); Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(tChart1.Chart); line.FillSample...
- Wed May 06, 2009 11:15 am
- Forum: .NET
- Topic: The Extra Legend...
- Replies: 4
- Views: 8200
Sandra,
Yes, that works. The only thing I had to change was the MouseDown lines.
Regards
Chris
Yes, that works. The only thing I had to change was the MouseDown lines.
Code: Select all
int series = elegend.Legend.Clicked(e.X, e.Y);
if (series != -1)
{
tChart1[series].Active = !tChart1[series].Active;
}
Chris
- Wed Apr 29, 2009 10:49 am
- Forum: .NET
- Topic: AfterDraw clip
- Replies: 1
- Views: 4167
AfterDraw clip
Hey,
is there any [easy] was to clip any custom stuff added to the chart? i've got some text on there drawn with e.rotatelabel, but when you scroll the chart it appears outside of the main chart area, so i'm wondering if there's a way to clip it?
regards,
chris.
is there any [easy] was to clip any custom stuff added to the chart? i've got some text on there drawn with e.rotatelabel, but when you scroll the chart it appears outside of the main chart area, so i'm wondering if there's a way to clip it?
regards,
chris.