Dear Christopher,
Thanks for this,
I was rather afraid it was the case
Search found 22 matches
- Thu Apr 07, 2016 7:34 pm
- Forum: .NET
- Topic: High-speed plotting using Teechart for UWP
- Replies: 2
- Views: 7257
- Fri Apr 01, 2016 6:05 pm
- Forum: .NET
- Topic: High-speed plotting using Teechart for UWP
- Replies: 2
- Views: 7257
High-speed plotting using Teechart for UWP
I need to plot an ECG waveform. The signal is captured at 300 Hz in 1 second (300 value) records. I want to display it using a refresh rate of 25 Hz (40 mSec), plotting 12 values on each cycle. My X axis has a maximum value of 3000 (10 secs). I'm using 'Fastline'. My prototype starts well enough, bu...
- Wed Dec 09, 2015 6:00 pm
- Forum: .NET
- Topic: TeeChart and UWP
- Replies: 3
- Views: 7631
Re: TeeChart and UWP
Excellent!!
Happy Christmas
Happy Christmas
- Tue Dec 08, 2015 9:22 pm
- Forum: .NET
- Topic: TeeChart and UWP
- Replies: 3
- Views: 7631
TeeChart and UWP
Is there any progress with the UWP version of TeeChart? - In an earlier post it was mentioned that one would be available in the autumn.
- Tue Sep 22, 2015 10:33 am
- Forum: .NET
- Topic: Transparent Datapoints Xamarin Android
- Replies: 1
- Views: 5017
Re: Transparent Datapoints Xamarin Android
OOPs - I forgot to specify:
fastLine1.TreatNulls = Steema.TeeChart.Styles.TreatNullsStyle.DoNotPaint; - This fixes the problem!
fastLine1.TreatNulls = Steema.TeeChart.Styles.TreatNullsStyle.DoNotPaint; - This fixes the problem!
- Tue Sep 22, 2015 7:55 am
- Forum: .NET
- Topic: Transparent Datapoints Xamarin Android
- Replies: 1
- Views: 5017
Transparent Datapoints Xamarin Android
Screenshot.jpg I'm creating an 'Oscilloscopic' ECG system which requires that datapoints be transparent when the second and subsequent screen scans are made. The problem is described fully in the post on oscilloscopic emulation. The solution (which was recommended by you) works very well in regular...
- Wed Sep 16, 2015 7:30 pm
- Forum: .NET
- Topic: XZ Grid with Y displacement
- Replies: 12
- Views: 20789
Re: XZ Grid with Y displacement
When I replace the method (as shown below) and attempt to re-compile, I get: Error 1 'Steema.TeeChart.Drawing.GL.GraphicsGL.TextOut(int, int, string, bool)': no suitable method found to override Code Snippet: //public override void TextOut(int x, int y, string text) //{ // TextOut(x,y,0,text); //} p...
- Wed Sep 16, 2015 8:17 am
- Forum: .NET
- Topic: XZ Grid with Y displacement
- Replies: 12
- Views: 20789
Re: XZ Grid with Y displacement
Dear Christopher,
I have the source code version. Could you let me know what to do?
Andy
I have the source code version. Could you let me know what to do?
Andy
- Mon Sep 14, 2015 6:52 pm
- Forum: .NET
- Topic: XZ Grid with Y displacement
- Replies: 12
- Views: 20789
Re: XZ Grid with Y displacement
Thank you. - I'm still extremely pleased with the graphs I generate!
Andy
Andy
- Thu Sep 10, 2015 8:55 pm
- Forum: .NET
- Topic: XZ Grid with Y displacement
- Replies: 12
- Views: 20789
Re: XZ Grid with Y displacement
Dear Christopher, I've solved questions 1 and 2: 1. The gray lines are the Grid lines of the Depth Axis and are removed by setting Axes.Depth.Grid.Visible to false. 2. In my version of Teechart (Steema TeeChart for .NET Source Code 2015 4.1.2015.08060) changing the font in properties (eg Axes.Bottom...
- Wed Sep 09, 2015 6:37 pm
- Forum: .NET
- Topic: XZ Grid with Y displacement
- Replies: 12
- Views: 20789
Re: XZ Grid with Y displacement
EffectOfOpenGL.jpg I'm afraid I'm still having problems. In the image above, the same chart (without series data) has been rendered with and without OpenGL active. I commented in or out the code below to achieve this effect: Steema.TeeChart.Drawing.GL.TeeOpenGL openGL = new Steema.TeeChart.Drawing....
- Wed Sep 09, 2015 4:53 am
- Forum: .NET
- Topic: XZ Grid with Y displacement
- Replies: 12
- Views: 20789
Re: XZ Grid with Y displacement
This illustrates the absence of labels with openGL. Also,how do I remove the dashed gray lines from the (invisible) left wall?
- Tue Sep 08, 2015 9:55 pm
- Forum: .NET
- Topic: XZ Grid with Y displacement
- Replies: 12
- Views: 20789
XZ Grid with Y displacement
Can you help?
- Tue Sep 08, 2015 8:32 pm
- Forum: .NET
- Topic: Continuous colored 3D surface in WPF
- Replies: 5
- Views: 12392
Re: Continuous colored 3D surface in WPF
Steema.TeeChart.Drawing.GL.TeeOpenGL openGL = new Steema.TeeChart.Drawing.GL.TeeOpenGL(SurfaceChart.Chart);
openGL.Active = true;
openGL.ShadeQuality = true;
openGL.Active = true;
openGL.ShadeQuality = true;
- Tue Sep 08, 2015 7:12 pm
- Forum: .NET
- Topic: Continuous colored 3D surface in WPF
- Replies: 5
- Views: 12392
Re: Continuous colored 3D surface in WPF
Can you show me some code which 'turns on' OpenGL and implements the continuously colored surface as shown above?