3D Pipe

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
HCCKPM
Newbie
Newbie
Posts: 9
Joined: Wed Jul 18, 2018 12:00 am

3D Pipe

Post by HCCKPM » Mon Aug 13, 2018 6:27 am

Hello, we use Teechart WPF
is it possible to display a 3D pipe?
Currently we use a dll for windows forms to display a 3d pipe and would like to switch to a Teechart wpf.
Attachments
Rol3D.png
Rol3D.png (43.62 KiB) Viewed 12400 times

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: 3D Pipe

Post by Sandra » Mon Aug 13, 2018 10:36 am

Hello

TeeChartFor.Net offers you use Volume Pie to draw a Pipe 3D. The same series works in wpf without problems.
The code below shows you how can use that:

Code: Select all

 private void InitializeChart(){
   	tChart1.Aspect.View3D = true;
	Steema.TeeChart.WPF.Styles.VolumePipe pipe1= new Steema.TeeChart.WPF.Styles.VolumePipe(tChart1.Chart);
	pipe1.FillSampleValues(100);
	tChart1.Legend.Visible = false;}
	
Hoping this helps you.
Thanks in advance
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

HCCKPM
Newbie
Newbie
Posts: 9
Joined: Wed Jul 18, 2018 12:00 am

Re: 3D Pipe

Post by HCCKPM » Mon Aug 27, 2018 5:54 am

Hello,
The data in the image example is 2 Dimensional, I need a data representation on the circumference of the cylinder with many slices. In the example image are 400 slices with 360 data points each around the circumference. Is there a Teechart Type that can do that?

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: 3D Pipe

Post by Christopher » Mon Aug 27, 2018 7:29 am

HCCKPM wrote:
Mon Aug 27, 2018 5:54 am
The data in the image example is 2 Dimensional, I need a data representation on the circumference of the cylinder with many slices. In the example image are 400 slices with 360 data points each around the circumference. Is there a Teechart Type that can do that?
I don't think there is, no, but that doesn't stop you from making one. We can help you to do so. Do you have a set of example data along with the mathematical operations you wish to perform on it to enable this representation?
Best Regards,
Christopher Ireland / 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

Post Reply