How do I get the asp.net chart controls to work? I added the System.Web.DataVisualization.dll and System.Web.DataVisualization.Design.dll to my bin folder. This is the error that I get. Compiler Error Message: BC30560: 'Chart' is ambiguous in the namespace 'System.Web.UI.DataVisualization.Charting'. Thanks for your help.
Scott did a nice Blog about them: http://weblogs.asp.net/scottgu/arch...l-lt-asp-chart-runat-quot-server-quot-gt.aspx
Thanks. I took the dlls out of the bin folder, since they are built into .NET 4.0. I then changed this line in my web config file. <add key="ChartImageHandler" value="storage=file;timeout=20;Url=~/chartTmpImages/;"/> Lastly, I added the chartTmpImages folder to my website. Now it works!