Skip to content

Commit

Permalink
fixes #90
Browse files Browse the repository at this point in the history
  • Loading branch information
beto-rodriguez committed Jul 21, 2021
1 parent 31ca08d commit 8941720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LiveChartsCore/Kernel/NamedLabeler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public string Function(double value)
var index = (int)value;

return index < 0 || index > _labels.Count - 1
? index.ToString()
? string.Empty
: _labels[index];
}
}
Expand Down

0 comments on commit 8941720

Please sign in to comment.