2

I have data within a database, and wish to display them in a chart on my website. I may wish to make this chart interactive in the future including drilldown etc.

I am still at the early stages of building this and am experimenting at the moment, however I cannot find any useful resource to build a chart programatically.

At present, I have a ChartsController

public ActionResult GoldFixes()
    {
        Chart chart = new Chart(300, 400);
        chart.DataBindTable(db.Gfxs.Take(5));
        return View(chart);
    }

but I don't want it to return a View, I want a chart - e.g. to display a dashboard!

The chart can be an image, but it definitely needs to be accessible. So for the interactivity, I will need NO FLASH or anything. Just MVC4.

Problem Solved - I am using GOOGLE CHARTS!!! https://google-developers.appspot.com/chart/interactive/docs/gallery/columnchart

1
  • Please ignore this question. I have just solved my problem... GoogleCharts saves a LOT of HEADACHE!!! link Commented May 23, 2012 at 2:19

1 Answer 1

1

https://google-developers.appspot.com/chart/interactive/docs/gallery/columnchart

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.