Graphics...

  • Thread starter Thread starter Marcos Galaviz
  • Start date Start date
M

Marcos Galaviz

How can i make graphics in .NET in a easy way?, can you givme a little of
help with this topic?

Thanks... and have a nice day ...
 
Marcos said:
How can i make graphics in .NET in a easy way?, can you givme a little of
help with this topic?

Thanks... and have a nice day ...

Have a look at the System.Drawing namespace.

In short, you create a Graphics object for whatever you want to draw on,
and use the methods of that object to draw.
 
If you're running ASP.NET applications, also consider programmatic
components such as zImage by ZieglerSoft, or websupergoo's image processing
component.

-KF
 
Here's a fairly simple way to create a bar chart on a web site:
http://SteveOrr.net/articles/BarGraphs.aspx

Here are a couple of good 3rd party charting controls:
http://SteveOrr.net/reviews/ChartingControl.aspx
http://SteveOrr.net/reviews/DotNetCharting.aspx

Here is a big list of charting components for you to browse:
http://www.asp.net/ControlGallery/default.aspx?Category=1&tabindex=0

Or it's not too hard to make your own:
http://msdn.microsoft.com/msdnmag/issues/02/02/ASPDraw/default.aspx
 
Back
Top