Introducing the New .NET MAUI Linear Gauge Control | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (174).NET Core  (29).NET MAUI  (207)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (215)BoldSign  (14)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (221)Microsoft  (119)PDF  (81)Python  (1)React  (100)Streamlit  (1)Succinctly series  (131)Syncfusion  (915)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (36)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (147)Chart  (131)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (628)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (40)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (507)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (592)What's new  (332)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Introducing the New .NET MAUI Linear Gauge Control

Introducing the New .NET MAUI Linear Gauge Control

We at Syncfusion are glad to announce the inclusion of the new .NET MAUI Linear Gauge control in the 2022 Volume 1 release.

The .NET MAUI Linear Gauge is a multipurpose data visualization control. It shows numerical values on a linear scale in horizontal or vertical orientations. You can use this control to design a value indicator, linear progress bar, thermometer, bullet chart, ruler, and more.

The Linear Gauge control comes with the following, entirely customizable, features:

Let’s explore these features.

Linear axis

The Linear Gauge axis is a linear scale on which a set of values is plotted. It has three sub-elements: axis lines, ticks, and labels.

Axis line: A linear line with customizable thickness, color, corner radius, and edge corner styles. Its fill color can be either solid or a linear gradient.

Ticks: Set two types of tick marks, major and minor. Customize the tick line styles and positions.

Labels: Add numeric content to depict the values in the scale. Customize the label styles, positions, and value formats.

Refer to the following image.

Axis Customization in .NET MAUI Linear Gauge Control
Axis Customization in .NET MAUI Linear Gauge Control

Linear range

The Linear Gauge range is a visual color element that helps you quickly visualize where the values fall on an axis. It denotes the selected range of values using the start and endpoints in an axis. We can add any number of ranges with different styles to a gauge and customize the range shape to be convex or concave. You can also choose whether the range should be flat or curved. Customize the range position, thickness, and color with a gradient.

Refer to the following image.

Range Customization in .NET MAUI Linear Gauge Control
Range Customization in .NET MAUI Linear Gauge Control

Bar pointer

A bar pointer is an accenting line that can be placed on a Linear Gauge to mark the current value in the axis. It always starts from the minimum value of the axis and ends at a specified value. We can customize the bar pointer’s thickness, color, corner styles, and bar position.

Bar Pointer Customization in .NET MAUI Linear Gauge Control
Bar Pointer Customization in .NET MAUI Linear Gauge Control

Marker pointer

Marker pointers indicate specific values on the axis. There are two types of marker pointers available: shape and content pointer.

Shape pointer

The shape marker pointer supports the following predefined shapes:

  • Triangle
  • Inverted triangle
  • Circle
  • Diamond
  • Rectangle

We can easily customize the size, position, and color of the shape marker pointer.

Shape Marker Pointer in .NET MAUI Linear Gauge
Shape Marker Pointer in .NET MAUI Linear Gauge

Content pointer

If the predefined shapes in the shape marker pointer do not meet your needs, use the content marker pointer. It enables you to use any content, like text or an image, as a marker pointer.

Content Marker Pointer in .NET MAUI Linear Gauge
Content Marker Pointer in .NET MAUI Linear Gauge

Mirror linear gauge

The Linear Gauge elements can be mirrored by just setting the IsMirrored property to true.

Mirror Linear Gauge

Pointer animation

You can animate the Linear Gauge elements in a visually appealing way when they are loading or when their values change. You can also use various pointer easing animations.

Pointer Animation in .NET MAUI Linear Gauge
Pointer Animation in .NET MAUI Linear Gauge

Pointer interaction

You can easily drag a bar or marker pointer from one value to another at run time.

Refer to the following GIF image.

Interacting with Pointers in .NET MAUI Linear Gauge
Interacting with Pointers in .NET MAUI Linear Gauge

Real-time examples

Using the .NET MAUI Linear Gauge control, you can easily design a thermometer, water tracker, height calculator, ruler, value indicator, and more. The following are some examples.

Thermometer

Thermometer UI using .NET MAUI Linear GaugeWater tracker

Water tracker UI using .NET MAUI Linear Gauge

Height calculator

Height calculator UI using .NET MAUI Linear Gauge

Add the .NET MAUI Linear Gauge to your application

Let’s see how to create a simple .NET MAUI app with our Linear Gauge control to demonstrate its basic usage.

Step 1: Create a .NET MAUI app.

First, create a new .NET MAUI app in Visual Studio.

Step 2: Install the NuGet packages.

The Syncfusion .NET MAUI controls are available in the NuGet Gallery. To add the SfLinearGauge control to your project, open the NuGet package manager in Visual Studio. Search for Syncfusion.Maui.Gauges and then install it.

Step 3: Handler registration.

The Syncfusion.Maui.Core NuGet package is a dependent package for all our Syncfusion .NET MAUI controls. In the MauiProgram.cs file, register the handler for Syncfusion Core using the ConfigureSyncfusionCore() method.

Refer to the following code.

public static MauiApp CreateMauiApp()
{
  var builder = MauiApp.CreateBuilder();
  builder
    .UseMauiApp<App>()
    .ConfigureSyncfusionCore()
    .ConfigureFonts(fonts =>
    {
      fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
    });
 
  return builder.Build();
}

Step 4: Import the namespace.

Then, import the control namespace Syncfusion.Maui.Gauges in your XAML or C# code.

xmlns:gauge="clr-namespace:Syncfusion.Maui.Gauges;assembly=Syncfusion.Maui.Gauges"

Step 5: Initialize the Linear Gauge.

Now, initialize the SfLinearGauge control. The default axis range is 0 to 100.

<gauge:SfLinearGauge />
Adding Linear Gauge to the .NET MAUI Application

Step 6: Add a range to the Linear Gauge.

Ranges contain a list of range elements. Add any number of ranges inside the linear axis. You can specify the start value, end value, and background color for ranges using the StartValue, EndValue, and Fill properties like in the following code example.

<gauge:SfLinearGauge>
 <gauge:SfLinearGauge.Ranges>
  <gauge:LinearRange StartValue="0" EndValue="100"/>
 </gauge:SfLinearGauge.Ranges>
</gauge:SfLinearGauge>
Adding a Range to the .NET MAUI Linear Gauge Control
Adding a Range to the .NET MAUI Linear Gauge Control

Step 7: Add a pointer to the Linear Gauge.

Pointers contain a list of pointer elements. You can add different kinds of gauge pointers, such as a BarPointer, LinearShapePointer, or LinearContentPointer inside the scale and set the Value property to indicate the pointer value.

Refer to the following code example.

<gauge:SfLinearGauge>
 <gauge:SfLinearGauge.Ranges>
   <gauge:LinearRange StartValue="0" EndValue="100"/>
 </gauge:SfLinearGauge.Ranges>
 <gauge:SfLinearGauge.BarPointers>
   <gauge:BarPointer Value="50" />
 </gauge:SfLinearGauge.BarPointers>
 <gauge:SfLinearGauge.MarkerPointers>
  <gauge:LinearShapePointer Value="60" />
  <gauge:LinearContentPointer x:Name="contentPointer" OffsetY="-15" Value="60">
   <gauge:LinearContentPointer.Content>
     <Label Text="{Binding Value, Source={x:Reference contentPointer}}" />
   </gauge:LinearContentPointer.Content>
  </gauge:LinearContentPointer>
 </gauge:SfLinearGauge.MarkerPointers>
</gauge:SfLinearGauge>
Adding a Pointer to the .NET MAUI Linear Gauge Control
Adding a Pointer to the .NET MAUI Linear Gauge Control

GitHub reference

For more details, refer to our .NET MAUI Linear Gauge Getting Started demo project.

Conclusion

Thanks for reading! I hope you enjoyed learning about the Syncfusion .NET MAUI Linear Gauge control and its features from the 2022 Volume 1 release. This control was developed with restructured APIs and the .NET MAUI graphics library, taking into consideration various use cases and performance aspects. For more details, check out the .NET MAUI Linear Gauge NuGet package and user guide.

If you need any specific feature in our .NET MAUI Linear Gauge, please let us know in the comments section below. You can also contact us through our support forums, support portal, or feedback portal. We are always happy to assist you!

Test Flight
App Center Badge
Google Play Store Badge
Microsoft Badge
Github Store Badge

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed