Andrew
Andrew

Reputation: 13231

What is your favourite 3rd party WinForms.Net graphing tool, and why?

By graphing I mean bar charts, pie charts, line graphs, that sort of thing. I've used a couple over the years, but what is your favourite and why?

One tool per answer please (to make the voting easier :o)

Upvotes: 4

Views: 1281

Answers (7)

chilltemp
chilltemp

Reputation: 8960

I use Infragistics chart control. Why... because it's part of the library of controls that we already have a subscription to. That ringing endorsement aside. Their chart control is very flexible. It supports many different chart types including the ones you've mentioned. They also support composite charts (several different charts within the same chart control). I will warn you though; learning their development style is not trivial.

Upvotes: 2

Oscar Cabrero
Oscar Cabrero

Reputation: 4169

ZedGraph Is Easy to use, Supports Logarithmic Scales and the best of all it is Free

Upvotes: 2

Kibbee
Kibbee

Reputation: 66162

I find ChartDirector to be a pretty good library. A large variety of charts are available with an easy to understand API. It also has a very reasonable cost.

Upvotes: 0

Enrico
Enrico

Reputation: 2037

I always use Zedgraph since this supports XY-scatter and many others don't. For measurements, data-acquisition and elaboration XY-scatter is very important.

Upvotes: 1

minty
minty

Reputation: 22441

If your goal is a simple graph and you need little control over how it is rendered you can easily get started with google chart api. You just putting an img tag on your site passing parameters in the querystring on the end of the url. You can even customize the output colors etc.

Upvotes: 3

ThatBloke
ThatBloke

Reputation: 513

TeeChart. I've been using this tool for a few years now, although it is not free (~500€) it is packed with features.

What I prefer:

  • axes scale automatically
  • automatic colours for different series
  • zoom by selecting an area with the mouse
  • delivered with excellent code examples of all the features
  • and web support for ASP.NET

Upvotes: 0

minty
minty

Reputation: 22441

I like ZedGraph it is a free library and produces quality output. You can tweak the anti-aliasing to work the way it looks best to you and it supports a variety of charts and graphs.

Upvotes: 8

Related Questions