Generating 3D graphs in .Net 2.0 windows forms.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I m willing to use Charting Tool to draw 3D Charts in Windows Forms in .Net
2.0

I want to generate a chart having all 3 axes plotted on the screen i.e.
X(Customer_acctbal),Y(supplier_acctbal) and Z(Compilation Cost).



My questions are:
1) Is this possible to draw using any chart utility?

2) If yes, then please guide us which chart utility to use and how to
generate charts using all the 3 axes ,if possible, kindly provide sample
project/code to do so.

Thanks & Regards.

Vikas.
+919999190313
 
I'm not an expert on .NET charting controls but I can tell you that
Infragists and Dundas Chart are pretty capable. You will probably need to
download the trial versions and check the capabilities yourself. The help
files and websites contain sample code on generating the graphs.
 
Vikas agarwal wrote:
| My questions are:
| 1) Is this possible to draw using any chart utility?
|
| 2) If yes, then please guide us which chart utility to use and how to
| generate charts using all the 3 axes ,if possible, kindly provide
| sample project/code to do so.

Hello,

You can easily do this with Steema Software's TeeChart for .NET (eval
version downloadable from:
http://www.steema.com/downloads/form_tch_net.html) using code similar to the
following:

private Steema.TeeChart.Styles.Points3D points3D;
private void InitializeChart()
{
tChart1.Series.Add(points3D = new Steema.TeeChart.Styles.Points3D());
double[] Customer_acctbal = new double[] {1,2,3};
double[] supplier_acctbal = new double[] {2,3,4};
double[] Compilation_Cost = new double[] {5,6,7};

points3D.Add(Customer_acctbal, supplier_acctbal, Compilation_Cost);
}
 
Back
Top