Telerik blogs

Hello everyone! There are several blogposts which demonstrate how to bind RadControls to an SQL database using WCF RIA services. This one will show how the Data Visualization controls can be bound to а sample database with RIA services. For this sample a combination of RadTimeBar and RadLinearSparkline is used without code behind modifications or ViewModel. Changing the selection of TimeBar’s time span updates the “Flight Statistics” and “Arrivals and Departures statistics” charts. The Bar Chart is populated with the number of Arrivals per Date (as being selected) and the Pie shows the Total of the Arrivals/Departures for the chosen time period. The picture below shows how this will look in action:

clip_image002

Here is how this is done step-by-step:

1. Create new Visual Studio 2010 Silverlight Application and check “Enable WCF Ria Services”:

clip_image004

2. Now that we have the web application, we will add our data model using the sample database (which you may find in the sample’s source code at the end of this post). For the purpose of this demonstration Entity Framework is used. Right click on the TimeBarFirstLook_WCF_RIA.Web server project in Solution Explorer and select Add New Item. Pick the Data category on the left, and select ADO.NET Entity Data Model, and name it FlightStatisticsModel.edmx. Create a new connection to the SQL database that will be used as datasource. In the next step, Choose Your Database Objects, check the box for Views and click Finish:

clip_image006

3. Rebuild the project so when we add the DomainDataSource it will see the generated entities.

4. In the server project (TimeBarFirstLook_WCF_RIA.Web) add a new Domain Service Class and select the FlightStatisticsView:

clip_image008

5. Click OK and rebuild the solution.

6. Now that we are ready with the server side, let's go to the client side - the Silverlight application.

Create new RadTimeBar, RadChart and RadLinearSparkline controls in XAML. Add the server project as new xmlns declaration:

  1. xmlns:web="clr-namespace:TimeBarFirstLook_WCF_RIA.Web"

Add RadDomainDataSource control and set the FlightStatisticsContext as DomainContext that will be used for the binding:
  1. <telerik:RadDomainDataSource Name="flightStatisticsSource" QueryName="GetFlightStatisticsViews"
  2.                                    AutoLoad="True"
  3.                                    Height="0" Width="0">
  4.           <telerik:RadDomainDataSource.DomainContext>
  5.               <web:FlightStatisticsContext />
  6.           </telerik:RadDomainDataSource.DomainContext>
  7.       </telerik:RadDomainDataSource>

Now the Data Visualizations controls will use the DataView as ItemsSource with ElementName set to the newly added domain data source (flightStatisticsSource).

Since the Pie Chart should display the Total of the Flights/Departures it is not enough to just group the data by FlightType and display the Sum with AggregateFunction. The chart would create a new DataSeries for each column in its datasource and we want it to be bound to both Arrivals and Departures and display a single pie. Our sample SQL Table has the Arrivals and Departures values in separate columns (see Fig. 1 below), so what we need is a list of two items – one for Arrivals and another one for Departures.

Fig.1:

clip_image010

To achieve this a Converter is used where the data is managed by a LINQ query:

  1. public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
  2.       {
  3.           IEnumerable<FlightStatisticsView> data = (value as DataItemCollection).Cast<FlightStatisticsView>();
  4.  
  5.           return (from p in data
  6.                   select new FlightRecords() { Type = "Arrival", TimeStamp = p.TimeStamp, FlightCount = p.Arrivals }).Concat(
  7.                   from p in data
  8.                   select new FlightRecords() { Type = "Departures", TimeStamp = p.TimeStamp, FlightCount = p.Departures });
  9.       }

The full source code for the sample can be downloaded from here!


Evgenia-Milcheva
About the Author

Evgenia Milcheva

Front-End Developer
Telerik XAML Team

Comments

Comments are disabled in preview mode.