I’ve currently got an application written in C#/mvc3/razor that uses a line chart that uses the system.web.helpers namespace. The lines themselves are quite narrow and too small to be useful. Does anyone know of any way to increase the width of the lines?
Addendum – to clarify – I am not using the System.Web.UI.DataVisualization name space, but rather the System.Web.Helpers Namespace.
Please find a list of custom properties here
I had to use charting controls in MVC-3 few months ago. Unfortunately helpers supported very little, so I had to modify properties through Series.
Edit: This is my original question.