views:

20

answers:

1

I need to create a sort of pie chart that has slices with differing radii - similar to:

http://www.andypope.info/charts/pieradius.htm.

I also want to overlay a second series on it, as a line.

The solution needs to be ASP.NET MVC-friendly - and I need to be able to associate "drill down" links with the slices.

If there's no off-the-shelf solution, is it going to be possible to customize the Microsoft Chart Controls pie chart to this extent? Or is this just too much customization and I'd end up spending more time fighting the existing code than writing my own?

A: 

Have you tried looking at http://plugins.jquery.com/project/gchart? It should be MVC friendly, considering it's jquery. I'm not sure if it will be able to do exactly what you want, but it might be worth a look.

Josh
Yes, I've look at this, thanks. But it didn't seem to have what I needed.
dommer