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.
3D Pipe
Re: 3D Pipe
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:
Hoping this helps you.
Thanks in advance
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;}
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 |
Instructions - How to post in this forum |
Re: 3D Pipe
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?
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?
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: 3D Pipe
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?HCCKPM wrote: ↑Mon Aug 27, 2018 5:54 amThe 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?
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 |