---
title: "Essential Gauge for Windows Forms in Volume 3 2013"
published_at: "2013-10-18T16:52:00+00:00"
modified_at: "2025-03-18T13:31:54+00:00"
url: "https://www.syncfusion.com/blogs/post/essential-gauge-for-windows-forms-in-volume-3-2013"
excerpt: "A highly sophisticated RadialGauge control with data binding support was introduced in our 2013 Volume 3 release of Essential Studio®. What is RadialGauge? A data visualization tool to measure the performance of an occurrence or an event, the RadialGauge control..."
taxonomy_category:
  - ".NET"
  - "C#"
  - "Desktop"
  - "Development"
  - "Essential Studio"
  - "Essential Tools"
  - "Windows Forms"
---

# Essential Gauge for Windows Forms in Volume 3 2013

[Syncfusion Guest Blogger](https://www.syncfusion.com/blogs/author/syncfusion-guest-blogger)

![Image](https://www.syncfusion.com/blogs/wp-content/uploads/2018/08/gauge_wf_2013_45490232.png)


A highly sophisticated RadialGauge control with data binding support was introduced in our 2013 Volume 3 release of Essential Studio®.

#### What is RadialGauge?

A data visualization tool to measure the performance of an occurrence or an event, the RadialGauge control displays actual values against target values.

#### Customization

The RadialGauge control includes rich customization support, allowing each of its elements to be displayed based on the end user’s requirements.

#### Skins and Frames

Built-in skins are supported in two different frames and include the following options:

- · Blue
- · Black
- · Silver
- · Metro
- 

Customized skins can be defined through coloring the APIs of the RadialGauge control’s elements, such as **Needles, Arcs, Ticks, Background, and Outer & Border Frames.**

**Circular Frame**

![Blue](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-27.jpg "Blue")![Black](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-28.jpg "Black")

![Silver](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-29.jpg "Silver") ![Metro](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-30.jpg "Metro")

**Semi-Circular Frame**

![Blue](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-31.jpg "Blue") ![Black](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-32.jpg "Black")

![Metro](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-33.jpg "Metro")

#### Placement and Orientations

You can easily customize the style of the needle and positions of the sub elements within the RadialGauge through the following enumerations:

· NeedleStyle

· TickPlacements

· LabelPlacements

· RangePlacements

![Default](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-34.jpg "Default")![Advanced](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-35.jpg "Advanced")![Pointer](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-36.jpg "Pointer")

#### Transparency

Need transparency in the control for a better appearance? The RadialGauge control can help by rendering the control with transparent background.

The following image illustrates the RadialGauge control with the optimized appearance through these key features:

· Transparent background.

· Different needle styles.

· Different Tick and Scale Label placements.

![RadialGauge controls with customized appearance](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-37.jpg "RadialGauge controls with customized appearance")

#### Data Binding

You can bind any data source to the RadialGauge and map an index of a record to represent the actual value in the RadialGauge. The properties DisplayMember and DisplayRecordIndex will map the DataColumn and DataRow of the binding source respectively to the Gauge control, which then will support high frequency data updates.

**Example:**

```
this.radialGauge1.DataSource = dataTable;
this.radialGauge1.DisplayRecordIndex = [Row Index];
this.radialGauge1.DisplayMember = ;
```
