Browse by Tags
All Tags »
Silverlight 2 (
RSS)
Silverlight Chart User Control In the last month I was creating a simple Silverlight Application which display a Financial Chart . It was in the following post: Displaying Chart using Silverlight 2.0 User Control In this post I have a better version of the previous chart, which includes: Handling large amount of data Displaying the tags (x-y values) correctly Supporting of resizing Using RESTfull Web Service The result of this project is as showed in the following image: Stock Quote Service Contract...
Using DragPanelExtender to Drag and Drop Silverlight Control In previous post ASP.NET AJAX DragPanelExtender I was displaying how to use ASP.NET AJAX DragPanelExtender Control to drag and drop content in your ASP.NET web pages. In order to drag and drop a Silverlight Control you need to: Create your Silverlight Project . Add DragPanelExtender into your page as described in the previous post: ASP.NET AJAX DragPanelExtender The html content of your web page should contain something like: < body...
Displaying Chart using Silverlight 2.0 User Control In this post I'm going to create a Chart User Control using Silverlight 2.0 . In previous post My New Innovative Project I talked about the application I'm developed, which is related to the finance market, and for that I need to display a financial chart. This chart is responsible for historical prices, and the data is received from a csv file as described in CsvReader and Linq. This chart is only first version and it will improved with...