-
diff --git a/EgwCoreLib.Razor/CircleGauge.razor b/EgwCoreLib.Razor/CircleGauge.razor
index d3663e4..ddc1f3d 100644
--- a/EgwCoreLib.Razor/CircleGauge.razor
+++ b/EgwCoreLib.Razor/CircleGauge.razor
@@ -2,13 +2,26 @@
diff --git a/EgwCoreLib.Razor/CircleGauge.razor.cs b/EgwCoreLib.Razor/CircleGauge.razor.cs
index deacbeb..8d39107 100644
--- a/EgwCoreLib.Razor/CircleGauge.razor.cs
+++ b/EgwCoreLib.Razor/CircleGauge.razor.cs
@@ -19,6 +19,11 @@ namespace EgwCoreLib.Razor
public string StyleTesto { get; set; } = "font-size: 1em; fill: gray;";
[Parameter]
public string strokeColorVal { get; set; } = "#00FF66";
+ ///
+ /// Indica se mostrare o meno il btn centrale
+ ///
+ [Parameter]
+ public bool ShowCircleBtn { get; set; } = false;
///
/// Valore da rappresentare
@@ -33,7 +38,7 @@ namespace EgwCoreLib.Razor
///
- /// Spessore dei cerchida disegnare
+ /// Spessore dei cerchi da disegnare
///
[Parameter]
public int sWidth { get; set; } = 10;