visual c# express graph (chart)

Started by
2 comments, last by Nik02 17 years, 6 months ago
Hi, I've a sql server 2005 database and visual c# 2005 express, I would like to know how to draw a chart (graph) from this sql server database. Thanks in advance
Advertisement
The easy way:

Use some ready-made charting component library, plonk a chart control into your form, and set it's data source to be from your database; that's it.

The hard way:

The data in your database table is effectively an array of records. With an ADO.net data adapter, it is easy to iterate over database records as an actual typed array - just draw some boxes, lines or pie segments that represent whatever quantity of the records you want to chart.

You can also use a recordset object to "manually" query the table, but I find the data adapter objects generally more convenient to use.

Niko Suni

Thank you,

I'm asking for who knows a free grid component for visual c# express.

thanx in advance
[google] free .net charting library [smile]

Niko Suni

This topic is closed to new replies.

Advertisement