Sign In or Register

ComponentArt

This blog has no description.

This blog is one of the best ajax blogs out there. Add this blog to My Feeds.

Dashboards Made Easy - The DrillDownManager Control

Mar 5, 2010 12:23pm

The usability and value of most modern dashboards becomes seriously questioned if the data shown is fixed, and the user does not have the ability to zoom in or drill-down into the data to a more detailed view.  Implementing this functionality can sometimes be a time consuming task - a...

Simplifying the WCF Service Connection - The WcfServiceDataProvider control

Mar 4, 2010 7:25am

WcfServiceDataProvider is a handy new control introduced to the Silverlight and WPF suite of controls in the 2010.1 release.  The control is somewhat different from most of the other controls.  It has no visual aspect to it (hence the pictureless blog post) and its sole purpose is to simplify the task of...

ItemFlow: Live XAML Content

Feb 23, 2010 10:33am

  Along with ComponentArt UI Framework 2010.1 for Silverlight and WPF comes fantastic new funtionality for our ItemFlow control, the ability to utilize live XAML content within ItemFlowItems. This brings to bear endless possiblities, anything from a simple form wizard spanning multiple ItemFlowItems to nesting an entire ItemFlow within an ItemFlowItem....

HOWTO: Using ComponentArt Themes with your Web.UI AJAX/MVC controls

Feb 19, 2010 11:46am

With Web.UI 2010, ComponentArt has introduced the ability to quickly apply a pre-built stylized design to UI controls in the form of Themes.  This allows developers to concentrate on the functional behavior of the control, as design concerns are essentially moved into CSS.  This has the added benefit of cleaning...

Customizing Axis Annotation Schemes in Silverlight Charts

Dec 15, 2009 7:46am

As my previous blog post mentioned, the sophisticated axis annotation mechanism is one of the most useful features of the Silverlight Chart control released with Web.UI 2009.3.  It allows the programmer to just drop the data into the chart and not worry too much about how the axis annotation labels...

Silverlight Chart: Overview of Chart Types

Dec 15, 2009 6:27am

  This blog post lists all the chart types that Silverlight Chart supports. They are divided into several sections: bar charts, pie and doughnut charts, area charts, line charts, marker and bubble charts and financial charts. Next to each chart type illustration we provide the XAML code block that generated it. Bar Charts The following bar chart...

Adding Labels and Additional Controls to Silverlight Gauges

Dec 4, 2009 5:59am

As most people reading these blogs are aware by now, the recently released Web.UI 2009.3, introduces a powerful Silverlight Gauges control.  One of the features that makes this control really powerful is the ability to insert additional Silverlight controls within a gauge. The idea is for these controls to be fitted...

Silverlight Chart Drilldown, Part Two: Adding a BreadCrumb Control

Dec 2, 2009 10:02pm

In my previous blog post, Silverlight Chart Drilldown: Part One, I described the steps necessary to create a drill-down chart using ComponentArt's Silverlight Chart. To navigate backwards to higher levels of drill-down we used a simple button that would take us back one level at a time. In this blog...

One Size Doesn't Fit All: RangeSlider and Its Motley Crew of Axii

Dec 2, 2009 9:04am

Standard Silverlight Slider comes with the baked-in numeric axis. While this is sufficient for working with, well, numeric data, it requires extra plumbing to map numeric values to any other data type or collection of data points, including writing a value converter for use in data binding. Apart from having an...

Introducing SOA.UI Helpers

Dec 1, 2009 11:44am

  The SOA.UI library has, since its introduction, defined its standard UI-serving services not only in terms of interfaces and DataContracts, but as a set of base classes to be inherited. This approach provides the automatic inheritance of the relevant interface and DataContract, but also allows for more helpful functionality to be...

Implementing TreeView in a NavBar

Nov 30, 2009 10:13am

One question that pops up surprisingly often is how to embed a TreeView control (or any other, but TreeView owes its dominant popularity to Outlook navigation pane) inside a NavBar panel and have it fill up the whole panel. This proved trickier than it seems, as NavBar would allow the...

Embedding Silverlight Upload in the page

Nov 25, 2009 8:47am

The Silverlight Upload control has, up until 2003.3 SP 1 required the inclusion of System.Web.Silverlight.dll and the use of the Silverlight ASP control. This requirement is due to the fact that Silverlight Upload requires two values provided via the InitParams tag, CartUploadId and CartTargetUrl. Things have changed and now Silverlight Upload gives...

Constrain the Silverlight Menu

Nov 25, 2009 8:30am

  By default the Menu will attempt to position all sub-menu drop-downs inside of the Silverlight plug-in area.  Sometimes this is not the desired behaviour, in this example the Menu.Clip feature will be used to achieve a neatly aligned appearance.   Figure 1, the problem: Setting a clip on the Silverlight Menu control gives...

SOA.UI with DataGrid for AJAX

Nov 24, 2009 1:04pm

  A bit of time has passed since we introduced the SOA.UI framework for writing web services that drive the UI. Integration with this elegant framework has become an important part of Web.UI for Silverlight, but our AJAX controls also contain quite a bit of functionality for seamlessly plugging into the SOA.UI...

Customizing Axis and Annotations in Silverlight Charts

Nov 23, 2009 1:48pm

We just shipped Web.UI 2009.3, which introduces the Silverlight Charting control.  Besides the obvious advantages of client-side rendering and many new look and animation related configurations, the Chart control still offers many of the standard features of our ASP.NET Charting control.  One of these features is the ability to customize...

Performance Improvements in DataGrid for AJAX 2009.3

Nov 20, 2009 8:01am

  In the recently published 2009.3 release of Web.UI for AJAX, one of the major enhancements to the ever-popular Grid control (now officially named DataGrid) is optimized client-side rendering and the addition of a new "ultra-light" rendering mode. This post will clarify the details of these improvements. Background Thanks to the generally very well...

Creating Custom DataPoint Annotations in Silverlight Charts

Nov 19, 2009 8:02am

As most people are by now aware, the recently released Web.UI 2009.3, introduces a Silverlight Charting control.  Although the main reasons for using the charting control is to visually display the relationship between data, at times this may not be enough on its own.  Sometimes you want to display additional...

Silverlight Chart Data-Point Markers and Mouse Events

Nov 19, 2009 2:53am

When using line charts, it is often desirable to further highlight the data-point in context by superimposing a marker on top. In this post, I will illustrate how to easily display data-point markers while utilizing mouse events. Basic Chart Start with your basic line chart (in this example we will use a chart...

Filtering and Searching with DataGrid for Silverlight

Nov 17, 2009 10:51am

  As of version 2009.3, ComponentArt DataGrid for Silverlight has out-of-the-box support for searching and filtering, with all the accompanying UI and API control. To enable filtering through the UI, we set DataGrid's ShowColumnFilters property to true. The availability of a filter dropdown for each column can be further controlled by changing...

Silverlight Chart Data-Point Selection and Highlighting

Nov 16, 2009 1:23pm

Often, when you are viewing visual data, it is necessary to highlight and select a data-point to obtain context specific information for more granular analysis. In this post, I will illustrate how to highlight and select a specific data-point with ease. Create a Basic Chart As always, start with a basic chart: <ca:Chart x:Name="Chart1"...

Creating Custom DataPoint Popups for Silverlight Chart

Nov 12, 2009 2:40pm

One of Chart's most powerful features is the ability to define custom templates for data-point popups.    In this post, I will cover defining a basic data-point popup, as well as attaching and displaying more complex data.   Start Simple   Start with a simple chart: <ca:Chart x:Name="Chart1" XValue="Area" ChartKind="RoundedBlock" Width="600" Height="400"> <ca:Chart.DataSeries> ...

Silverlight Chart Drilldown: Part One

Nov 11, 2009 12:15pm

    This blog post will demonstrate how to use the drilldown capability of the Silverlight Chart control. Silverlight Chart Drilldown: Part Two and Part Three will show how to integrate Chart drilldown with a BreadCrumb control and a RangeSlider control respectively. We will create a bare-bones drilldown chart with three drill...

Lone Programmer Wins Our Silverlight Coding Competition

Nov 11, 2009 11:38am

When we launched our 2009 Silverlight Coding Competition back in June, we didn't quite know what to expect. Silverlight was still relatively new and participation required real effort on the part of contestants, so we weren't sure if we were going to get enough signups to make things interesting. Well,...

VIDEO: Charting and Visualization for Silverlight

Nov 10, 2009 9:58am

As you may know by now, late on Friday (or more precisely early on Saturday) we shipped a major release, UI Framework 2009.3, containing our brand-new suite of Silverlight Charting and Visualization controls. We are quite proud of what we were able to achieve. We really pushed Silverlight 3 to its...