Issue: When I add text plot with multiple lines and I configure a background color and BorderColor, some of the text is outside the borders.
ScottPlot Version: ScottPlot 5
public Form1()
{
InitializeComponent();
var ohlcs = Generate.RandomOHLCs(12_000);
formsPlot1.Plot.Add.Candlestick(ohlcs);
var label = formsPlot1.Plot.Add.Text("First line\nSecond line", 55_000, 300);
label.Label.BorderColor = Colors.Blue;
label.Label.BackColor = Colors.Blue.WithAlpha(.5);
label.Label.Padding = 3;
}
