views:

41

answers:

2

In order to perform basic charting from a windows service (win32 API) including the generation of bar charts from text file data (saved as .jpeg for instance), I'm stuck about whether .NET 3.5 has this ability built in.

For charting, which references should be added and/or which using statements included?

Even a nudge in the right direction would be appreciated.

Thanks!

A: 

You could use the MS Chart Controls. They can be downloaded here.

Russ Bradberry
A: 

Have you looked into ZedGraph?

yodaj007