narutouzumaki 99
narutouzumaki 99

Reputation: 107

What to use for representing data in graphs in c# and asp.net web forms

I have to create simple application. User selects time period and I get data from database for selected period and put it on the graph. How are graphs generated in c#. What library should I use for this?

Upvotes: 0

Views: 778

Answers (1)

Albert D. Kallal
Albert D. Kallal

Reputation: 49039

Well, you can from the tool box drag in a chart control.

eg:

enter image description here

And you can even use the wizard to setup the data source.

So, the built in chart control is a good start. Perahps there is some reason you don't want to use this asp.net control?

Upvotes: 1

Related Questions