I want to use the full charting options available in ASP.NET Web Pages in WebMatrix 3.
I think this means using System.Web.UI.DataVisualization.Charting
When adding:
using System.Web.UI.DataVisualization.Charting
to the top of my page, I get the error:
Compiler Error Message: CS0234: The type or namespace name 'DataVisualization' does not exist in the namespace 'System.Web.UI' (are you missing an assembly reference?)
There are plenty of tutorials out there (including on SO) demonstrating how to download and reference the dll into Visual Studio, but as far as I can see there's nothing for us WebMatrix users.
Does this mean that it can't be used in a WebMatrix site? If so, why??
If anyone knows how to include the relevant namespace in WM, I'd be very grateful if you'd explain it here.