Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chart control for Windows 8 metro style Apps [closed]

Do we have any chart control available in windows 8 metro style.? In WP7(.Net ver 4.0) we have Windows.Form.DataVisualization.dll to deal with chart control. This dll is also come with .Net for metro style apps(Net ver 4.5).But while referencing this dll from (.Net ver 4.5 folder) its giving 2 build error as below....

Error 8 Cannot resolve Assembly or Windows Metadata file 'System.Windows.Forms.dll' E:\MyFolfer\MetroApp\ChartApp\ChartApp.csproj

Error 9 Type universe cannot resolve assembly: System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089. ChartApp

Any idea...

Note: Non-paid options are prefered.

like image 467
code_star_net Avatar asked Jun 02 '12 12:06

code_star_net


2 Answers

You can't do winforms in WinRT. It is a new UI and API.

Supposedly Telerik is working on a chart component.

like image 120
Daniel A. White Avatar answered Sep 30 '22 07:09

Daniel A. White


You can build Metro Style Applications using HTML5-Javacript, so you could use the GPL project dhtmlx

From the home-page:

dhtmlxChart is a pure JavaScript charting library for generating Ajax charts on a web page

like image 36
yms Avatar answered Sep 30 '22 07:09

yms