Localise profile line chart.

This commit is contained in:
Lucas A 2021-07-24 10:08:47 +02:00
parent c92f69467a
commit 6095aa2791
1 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ private void addRowTick(float y, double value)
Origin = Anchor.CentreRight,
RelativePositionAxes = Axes.Y,
Margin = new MarginPadding { Right = 3 },
Text = value.ToString("N0"),
Text = value.ToLocalisableString("N0"),
Font = OsuFont.GetFont(size: 12),
Y = y
});
@ -193,7 +193,7 @@ private void addColumnTick(float x, DateTime value)
{
Origin = Anchor.CentreLeft,
RelativePositionAxes = Axes.X,
Text = value.ToString("MMM yyyy"),
Text = value.ToLocalisableString("MMM yyyy"),
Font = OsuFont.GetFont(size: 12, weight: FontWeight.SemiBold),
Rotation = 45,
X = x