Drawing complex graphs

mcerk

Well-known member
Joined
Nov 1, 2004
Messages
78
Ok. I have a question. Is there any simple way to draw graphs in .NET?

I have 1000 points (X and Y coordinates).

I could of course draw 1000 lines between them. But there wouldnt be a smooth line. Is there possible to create a graph (maybe using exell functions)?


tx


matej
 
mcerk said:
Ok. I have a question. Is there any simple way to draw graphs in .NET?

I have 1000 points (X and Y coordinates).

I could of course draw 1000 lines between them. But there wouldnt be a smooth line. Is there possible to create a graph (maybe using exell functions)?

tx

matej

Am not sure what are you trying to do but if your drawing lines using System.Drawing.Graphics there is a propperty about using anti-alias which I cant recall at the mommet:D

Do a research on your .NET MSDN documentation and you will find it for sure...
 
Last edited by a moderator:
Back
Top