making charts in VB.NET

  • Thread starter Thread starter chaelon
  • Start date Start date
C

chaelon

I'm trying to gather info on whether VB.NET would be right for my
application needs. I need to create basic charts, such as line
charts, bar charts, pie charts, etc., with maybe regression lines
included too, but really nothing heavy. But I do want the charts to
look very good.

Are there any tools in VB.NET that one could use? I am using
Microsoft Visual Basic 2005 Express Edition.

Thanks
 
I'm trying to gather info on whether VB.NET would be right for my
application needs. I need to create basic charts, such as line
charts, bar charts, pie charts, etc., with maybe regression lines
included too, but really nothing heavy. But I do want the charts to
look very good.

Are there any tools in VB.NET that one could use? I am using
Microsoft Visual Basic 2005 Express Edition.

Thanks
I use Chartfx. Expensive but does everything you could possibly want
 
I'm trying to gather info on whether VB.NET would be right for my
application needs. I need to create basic charts, such as line
charts, bar charts, pie charts, etc., with maybe regression lines
included too, but really nothing heavy. But I do want the charts to
look very good.

Are there any tools in VB.NET that one could use? I am using
Microsoft Visual Basic 2005 Express Edition.

Thanks

Here's one you might use:

http://www.codeproject.com/csharp/zedgraph.asp

I don't know if there are any licensing restrictions, so you'll want
to check before using it.

Thanks,

Seth Rowe
 
Hi

Using the GDI+ tools availabe in .NET you can create some pretty
sophisticated charts without the need to buy third party tools.

There are some very good articles on www.devcity.net written by Ged Mead (an
MVP) that takes you through several types of chart creation using GDI+:

http://www.devcity.net/Articles/135/1/article.aspx
http://www.devcity.net/Articles/138/1/article.aspx
http://www.devcity.net/Articles/139/1/article.aspx
http://www.devcity.net/Articles/154/1/article.aspx
http://www.devcity.net/Articles/229/1/article.aspx
http://www.devcity.net/Articles/255/1/article.aspx
http://www.devcity.net/Articles/275/1/article.aspx


HTH
 
Actually, ChartFX Lite probably will do all that OP wants, too. And, it is
free!

Dick

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
 
Actually, ChartFX Lite probably will do all that OP wants, too. And, it is
free!

I just looked at it, and it seems pretty close to what I would need,
at least
much of it. One thing it maybe lacks is point picking (being able to
click
on a data point and get info about that point), but it's a good
start. Thanks.
 
Back
Top