When the chart background is set to transparent, the transparent area directly penetrates to the desktop, ignoring the contents of the lower controls and windows. I don't think this is in line with common usage habits and needs.
In gif(7.3mb)(5.3mb), observe the actual rendering under different conditions by adjusting the background color of the window and chart.


Through debugging, the cause of the problem is “Canvas.Clear(Background)“ in the ”SkiaSharpDrawingContext.OnBeginDraw()” method,The default layer connects directly to the underlying operating system。If “Canvas.SaveLayer()” is executed before then,"Clear()" will only affect new layers。
