Да, это похоже на то, что DumpInline
делает за кадром, хотя и с веб-диаграммой.
Вот код из LINQPadChart
, если вы хотите скопировать его в MyРасширения
public static class MyExtensions
{
public static Bitmap ToBitmap (this Chart webChart) => ToBitmap (webChart, 0, 0);
public static Bitmap ToBitmap (this Chart webChart, int width, int height)
{
if (width <= 0) width = Screen.PrimaryScreen.WorkingArea.Width / 2;
if (height <= 0) height = width / 2;
var img = new Bitmap (width, height);
using (var g = Graphics.FromImage (img)) webChart.Paint (g, new Rectangle (0, 0, width, height));
return img;
}
}