示例#1
0
		static void Main(string[] args)
		{
			ChartPlotter plotter = new ChartPlotter { Width = 200, Height = 200 };
			plotter.SaveScreenshot("1.png");

			Process.Start("1.png");
		}
示例#2
0
		static void Main(string[] args)
		{
			ChartPlotter plotter = new ChartPlotter();
			plotter.PerformLoad();
			plotter.Background = Brushes.Transparent;
			plotter.SaveScreenshot("1.png");
		}