Page 1 of 1
3D Pipe
Posted: Mon Aug 13, 2018 6:27 am
by 15684006
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.
Re: 3D Pipe
Posted: Mon Aug 13, 2018 10:36 am
by 10050769
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
Re: 3D Pipe
Posted: Mon Aug 27, 2018 5:54 am
by 15684006
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?
Re: 3D Pipe
Posted: Mon Aug 27, 2018 7:29 am
by Christopher
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?