Telerik blogs
  • Desktop WPF

    Exploring the RadSparklines performance in WPF/Silverlight

    As we know, the RadSparklines are characterized by their small memory footprint, cleaner XAML and simple but powerful rendering. When looking at the sparkline controls in the context of a charting tool one has to note that they are much more simplified. They lack many of the visual elements, such as Axis lines, gridlines or striplines. This makes them much faster when rendered and very suitable when used in high data-intensity scenarios. One such scenario may be when using different types of sparklines bound to a ViewModel/class, which passes hundreds or even thousands of data points to the controls.   Since the RadSparklines...
    December 06, 2010
  • Web

    Some insight on the Telerik Weather Station application

    We have recently uploaded the Weather Station demo showing some of Telerik controls for Silverlight in a great rich context. Following Kalin’s blog post announcing the main features, this one is to provide some notes on the technical side of the matter. Here is a list of the main features: Find client’s location upon startup and retrieve weather information if available. Store current locations and favorite ones in the local storage for proper loading on next startup of the application. Use two formats for weather values - Celsius and Fahrenheit. Search for custom location. Display brief location information (on smaller zoom levels) as well as...
    November 26, 2010
  • Desktop WPF

    Say hello to the RadBulletGraph for Silverlight/WPF!

    Hello everybody! I am Yavor Ivanov and I work in the DataVisualization team here at Telerik.  As Vladimir mentioned earlier in his blog post, the Q3 release focuses on dashboards and line of business applications and today I am happy to announce another result of this focus: the RadBulletGraph!     The Bullet Graph is created by Stephen Few and it is designed especially for dashboards. This little wonder is very data intensive and easy to read at the same time. In just one Bullet graph you can demonstrate both what your projected and your accomplished goals for a period are, specify qualitative...
    November 26, 2010
  • Desktop WPF

    How to create Custom Appointments and Custom Appointment Dialog in Telerik ScheduleView

    A common scenario when using the ScheduleView control is to have custom appointments with additional properties that are not by default included in the standard Appointment class. In these cases simply extending the Appointment class is not enough, because we have some more requirements – we want our custom properties to support cancelation of editing (like the standard one does), we want to allow the user to edit the custom properties using the Appointment edit dialog and eventually to render values of the custom properties in the AppointmentItem or/and its ToolTip. In this article we will go through the following steps: Create a custom appointment...
    November 25, 2010
  • Desktop WPF

    How to Implement AutoScroll While Dragging in RadTreeView

    With this short post I’ll explain how to achieve a functionality similar to the one shown bellow. Unable to display content. Adobe Flash is required.   The key to achieving this scenario is to use Behaviors. Start off by adding a reference to the System.Windows.Interactivity.dll which is located in: [WPF] C:\Program Files (x86)\Microsoft SDKs\Expression\Blend 3\Interactivity\Libraries\WPF\ [Silverlight] C:\Program Files (x86)\Microsoft SDKs\Expression\Blend\Silverlight\v4.0\Libraries\ (note: the location of the binary might be different on your machine) Then create a class called AutoScrollBehavior.cs using System; using System.Windows; using System.Windows.Controls; using System.Windows.Interactivity; using Telerik.Windows.Controls; using Telerik.Windows.Controls.DragDrop; #if SILVERLIGHT using EventManager = Telerik.Windows.EventManager; #endif namespace TreeView.AutoScroll { public class AutoScrollBehavior : Behavior<RadTreeView> { protected override void OnAttached() { ...
    November 25, 2010