# User Interaction

## Content

**Gauge for WinUI** 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://docapp.mescius.io/DOCUMENT_SITE_LINK_PREFIX_HERE/document-site-files/images/4f868d06-8d51-499e-8191-b535fade2347/images/linear-gauge-user.gif?width=300)![](https://docapp.mescius.io/DOCUMENT_SITE_LINK_PREFIX_HERE/document-site-files/images/4f868d06-8d51-499e-8191-b535fade2347/images/radial-gauge-user-interaction.gif?width=400)
To enable user interaction, you can set the **IsEnabled** property of the C1Gauge class to true. By default, this property is false.

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