Update dependencies

This commit is contained in:
2024-05-01 10:19:57 +02:00
parent 2a4e8d69d0
commit fd17d294b9
3 changed files with 10 additions and 10 deletions

View File

@ -592,13 +592,13 @@ namespace Elwig.Windows {
Pixel mousePixel = new(p.X, p.Y - 30);
Coordinates mouseLocation = OechslePricePlot.Plot.GetCoordinates(mousePixel);
TooltipPlot = OechslePricePlot.Plot.Add.Text($"Oechsle: {pointX:N2}, Preis: {Math.Round(pointY, Season.Precision)}€/kg", mouseLocation.X, mouseLocation.Y);
TooltipPlot.Label.FontSize = 12;
TooltipPlot.Label.Bold = true;
TooltipPlot.Label.BorderColor = Colors.Black;
TooltipPlot.Label.BorderWidth = 2;
TooltipPlot.Label.BackgroundColor = Colors.White;
TooltipPlot.Label.Padding = 10;
TooltipPlot.Label.Alignment = Alignment.MiddleLeft;
TooltipPlot.LabelFontSize = 12;
TooltipPlot.LabelBold = true;
TooltipPlot.LabelBorderColor = Colors.Black;
TooltipPlot.LabelBorderWidth = 2;
TooltipPlot.LabelBackgroundColor = Colors.White;
TooltipPlot.LabelPadding = 10;
TooltipPlot.LabelAlignment = Alignment.MiddleLeft;
}
LastHighlighted = (g, pointIndex);
HoverChanged = false;