dave
dave

Reputation: 11985

Looking for design tips for web app to display SQL data as charts

We have an existing POS system that faithfully records financial data into an SQL database. The system doesn't have much in the way of reporting, so we've implemented our own system. Simply put, we denormalise the financial data into a large table. We then connect an Excel spreadsheet pivot table to this large table. We suck the data in, use the pivot table to slice and dice it and total up the figures. We then create charts in Excel of the data. This works very well and the charts have proved very useful.

We'd like to make these charts available on our intranet website. Rather than have everyone download the large spreadsheet and play with it, we just want the charts on a few pages.

I'm sure there are many ways of doing this. Our contraints are:

Given our contraints, can I have some suggestions as to a simple-to-implement design for a system to display the charts on our website. No need for great detail, just some pointers in the right direction for further research.

Upvotes: 3

Views: 820

Answers (2)

Steve Wellens
Steve Wellens

Reputation: 20640

If you're using C# and .NET you could use the Microsoft Chart controls.

Upvotes: 1

anon
anon

Reputation: 4618

I've had some very satisfying experiences with these guys:

http://www.softwarefx.com/

My scenario was querying monitoring data and turning them into pie charts and line graphs. Overall it was fast and easy with the exception of some pivot-type data.

Upvotes: 0

Related Questions