Search found 22 matches

by Anaesthesia
Thu Apr 07, 2016 7:34 pm
Forum: .NET
Topic: High-speed plotting using Teechart for UWP
Replies: 2
Views: 7234

Re: High-speed plotting using Teechart for UWP

Dear Christopher,

Thanks for this,

I was rather afraid it was the case :(
by Anaesthesia
Fri Apr 01, 2016 6:05 pm
Forum: .NET
Topic: High-speed plotting using Teechart for UWP
Replies: 2
Views: 7234

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...
by Anaesthesia
Wed Dec 09, 2015 6:00 pm
Forum: .NET
Topic: TeeChart and UWP
Replies: 3
Views: 7595

Re: TeeChart and UWP

Excellent!!

Happy Christmas :D
by Anaesthesia
Tue Dec 08, 2015 9:22 pm
Forum: .NET
Topic: TeeChart and UWP
Replies: 3
Views: 7595

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.
by Anaesthesia
Tue Sep 22, 2015 10:33 am
Forum: .NET
Topic: Transparent Datapoints Xamarin Android
Replies: 1
Views: 4993

Re: Transparent Datapoints Xamarin Android

OOPs - I forgot to specify:

fastLine1.TreatNulls = Steema.TeeChart.Styles.TreatNullsStyle.DoNotPaint; - This fixes the problem!
by Anaesthesia
Tue Sep 22, 2015 7:55 am
Forum: .NET
Topic: Transparent Datapoints Xamarin Android
Replies: 1
Views: 4993

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...
by Anaesthesia
Wed Sep 16, 2015 7:30 pm
Forum: .NET
Topic: XZ Grid with Y displacement
Replies: 12
Views: 20696

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...
by Anaesthesia
Wed Sep 16, 2015 8:17 am
Forum: .NET
Topic: XZ Grid with Y displacement
Replies: 12
Views: 20696

Re: XZ Grid with Y displacement

Dear Christopher,

I have the source code version. Could you let me know what to do?

Andy
by Anaesthesia
Mon Sep 14, 2015 6:52 pm
Forum: .NET
Topic: XZ Grid with Y displacement
Replies: 12
Views: 20696

Re: XZ Grid with Y displacement

Thank you. - I'm still extremely pleased with the graphs I generate!

Andy
by Anaesthesia
Thu Sep 10, 2015 8:55 pm
Forum: .NET
Topic: XZ Grid with Y displacement
Replies: 12
Views: 20696

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...
by Anaesthesia
Wed Sep 09, 2015 6:37 pm
Forum: .NET
Topic: XZ Grid with Y displacement
Replies: 12
Views: 20696

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....
by Anaesthesia
Wed Sep 09, 2015 4:53 am
Forum: .NET
Topic: XZ Grid with Y displacement
Replies: 12
Views: 20696

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?
by Anaesthesia
Tue Sep 08, 2015 9:55 pm
Forum: .NET
Topic: XZ Grid with Y displacement
Replies: 12
Views: 20696

XZ Grid with Y displacement

OpenGL3D.png
OpenGL3D.png (315.88 KiB) Viewed 20909 times
I'm attempting to emulate the surface chart entitled "XZ Grid with Y displacement" from your gallery. I can't find it in your samples. I can reproduce the charting behaviour by activating Open GL, but then the axis labels are not shown properly (See above).

Can you help?
by Anaesthesia
Tue Sep 08, 2015 8:32 pm
Forum: .NET
Topic: Continuous colored 3D surface in WPF
Replies: 5
Views: 12326

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;
by Anaesthesia
Tue Sep 08, 2015 7:12 pm
Forum: .NET
Topic: Continuous colored 3D surface in WPF
Replies: 5
Views: 12326

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?