Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / WinForm General / February 2007

Tip: Looking for answers? Try searching our database.

Generating 3D graphs in .Net 2.0 windows forms.

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Vikas agarwal - 09 Feb 2007 11:43 GMT
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
Ciaran O''Donnell - 12 Feb 2007 10:13 GMT
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.

Signature

Ciaran O''Donnell
http://wannabedeveloper.spaces.live.com

> Hi,
>
[quoted text clipped - 17 lines]
> Vikas.  
> +919999190313
Christopher Ireland - 12 Feb 2007 11:04 GMT
| 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);
   }

Signature

Christopher Ireland
www.steema.com


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.