# User Interaction

With Gauge controls for WinForms (GaugeControl) you can visualize your date in beautiful and meaningful ways. This API provides different gauges as Linear Gauge, Radial Gauge, BulletGraph Gauge to create simple and practical usecases.

## Content



**Gauge for WPF** supports end-user interaction capability. Hence, you can drag the pointer on the Gauge control simply using the mouse. This is depicted in the following GIFs.

![](https://cdn.mescius.io/document-site-files/images/4f868d06-8d51-499e-8191-b535fade2347/images/linear-gauge-user.gif)![](https://cdn.mescius.io/document-site-files/images/4f868d06-8d51-499e-8191-b535fade2347/images/radial-gauge-user-interaction.gif)

To enable user interaction, you can set the **IsEnabled** property of the [C1Gauge](/componentone/api/wpf/online-gauges-net/dotnet-api/C1.WPF.Gauge/C1.WPF.Gauge.C1Gauge.html) class to true. By default, this property is false.

```xml
<c1:C1LinearGauge x:Name="linearGauge" Value="50" TextVisibility="All"  IsEnabled="True" ShowRanges="True" Min="0" Max="100" Direction="Up" Margin="295,94,426,93" />
```