We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed735f7 + 5862bd1 commit 80dcabdCopy full SHA for 80dcabd
MainPage.xaml.cs
@@ -18,7 +18,7 @@ protected override List<GaugeLabelInfo> GenerateVisibleLabels()
18
List<GaugeLabelInfo> customLabels = new List<GaugeLabelInfo>();
19
20
var _minimum = (int)logBase(this.Minimum, 10);
21
- var _maximum = (int)logBase(this.Minimum, 10);
+ var _maximum = (int)logBase(this.Maximum, 10);
22
for (var i = _minimum; i <= _maximum; i++)
23
{
24
int value = (int)Math.Floor(Math.Pow(10, i));// logBase value is 10
0 commit comments