background preloader

Telerik

Facebook Twitter

Overview. Thank you for choosing RadTimeBar!

Overview

The RadTimeBar is a time bound DataVisualization control. Its chief purpose is to allow lightweight scrolling and navigation through large periods of time. Additionally, the control exposes intuitive API which allows for both declarative and programmatic manipulation of the control. The RadTimeBar control can host other controls; however its true power comes when combined with RadSparklines to show trends in large data collections.

The control can be easily combined with other controls such as RadChart, RadGridView, RadBulletGraph, etc. to create rich and powerful dashboards. A sample TimeBar definition may look like this: CopyXAML Visually, such a setup looks as shown below: Now let's combine it with linear RadSparkline. Voilà: Here's the way our sparkline was populated with data. CopyC# CopyVB.NET. Windows.Controls.TimeBar Namespace. MonthInterval Class. TV > Watch > Getting Started with RadTimeBar Part 1. Subscribe Subscribe to all Getting Started with RadTimeBar Part 1 Published on Apr 27, 2011 In this video, we will walk through the steps needed to add a RadTimeBar to your Silverlight and WPF applications.

TV > Watch > Getting Started with RadTimeBar Part 1

This will include a look at a sample data structure to get started with, various properties on the control that control date display and visible ranges, as well as how to set up both intervals and RadSparklines for displaying our visualizations. Tags: Integration Getting-Started RadTimeBar Send feedback RadControls for Silverlight Demo Free Trial Purchase Products in this video. RadControls for Silverlight. At Telerik, we are no strangers to development patterns and practices that emerge in the constantly growing and changing .NET ecosystem.

RadControls for Silverlight

As can be seen from planned increased support for the MVVM pattern in Silverlight 5, even Microsoft has accepted MVVM as the de facto standard for serious enterprise development with Silverlight and WPF. Even before this, the developers at Telerik have been working hard at ensuring that all of our components from the UI for WPF, UI for Silverlight and UI for WPF control suites support the MVVM pattern. Taking RadGridView as an example, you can always take the easy way and allow RadGridView to generate columns for you based on your datasource, but sometimes we want more control over what is being displayed. Looking at the code below, we can see three key parts of MVVM in action with the UI for Silverlight/WPF: DelegateCommand, on the other hand, is an implementation of the iCommand interface that allows for using commands between the View and ViewModel. Telerik mvvm silverlight delegatecommand.

MVVM DelegateCommand binding error - GridView Forum - WPF Controls. How to RadTreeView events work with MVVM - TreeView Forum - Silverlight Controls. Rossen's blog > Asynchronous Master-Details with RadGridView for Silverlight and WCF RIA Services. RadControls for Silverlight. Extensive Set of Controls Telerik UI for Silverlight includes a wide range of controls—from small UI components such as Rating to powerful data-driven controls like GridView.

RadControls for Silverlight

The suite provides a variety of data visualization tools which allow you to display and edit your data in many different ways. Manipulate your row data in a GridView or Spreadsheet and then visualize it through PivotGrid, or any of the other charting and diagramming tools. Choose from a number of components for daily or business planning such as ScheduleView where users can easily plan their day and GanttView which allows users to visualize and manage any project planning data. Telerik UI for Silverlight comes complete with customizable UI controls for a variety of needs and options, which makes it the ideal choice for any Line of Business Application. Introduction. How to add Sparkline control thorough VS 2010 - Sparkline Forum - Silverlight Controls. Using HierarchicalDataTemplate and ContainerBindingCollection in RadTreeView - TreeView(Telerik Knowledge Base) How to use item templates - TreeView Forum - Silverlight Controls.

Hierarchicaldatatemplate treeview databinding Silverlight / WPF. A TreeView represents data in a hierarchical view in a parent child relationship where a parent node can be expanded or collapse.

hierarchicaldatatemplate treeview databinding Silverlight / WPF

The left side bar of Windows Explorer is an example of a TreeView. The TreeView tag represents a WPF TreeView control in XAML. The Width and Height properties represent the width and the height of a TreeView. The Name property represents the name of the control, which is a unique identifier of a control. The Margin property tells the location of a TreeView on the parent control. The following code snippet sets the name, height, and width of a TreeView control. <TreeView Margin="10,10,0,13" Name="TreeView1" HorizontalAlignment="Left" VerticalAlignment="Top" Width="194" Height="200" /> Adding TreeView Items A TreeView control hosts a collection of TreeViewItem. VerticalAlignment="Top" Width="194" Height="200"> By default, the parent node is collapsed but when you click on it, the expanded view looks like Figure 1. Figure 1. Adding TreeView Items Dynamically Add Item.