Creating Charts Using Microsoft Chart Control

I download samples from Microsoft to create charts in my MVC application using Microsoft Chart Control.

The problem is that all the examples that I found using Chart controls in MVC use images and are not interactive compared to Google Charts, HighCharts, etc.

Am I missing something or is that so? Can I create interactive charts using ASP.NET MVC and Microsoft Chart controls?

thank

+3
source share
2 answers

, ( ), MS Charts . , . , , , highcharts. , , (, ..), . imagemaps, / - , , , .

0

MVC 3 Microsoft. , .

, imageMap . , .

,

HTMLAction html.RenderAction

 <img src="<%= Url.Action("Chart", new { id = Model.Id }) %>" usemap="#MyMap" />
 @Html.Action("ChartMap", new { id = Model.Id, name = "MyMap" }); 

, - .

, .

0

All Articles