我有一个Web服务,可以生成各种图表。
使用System.Windows.Forms.DataVisualization.Charting以编程方式生成图表,并将它们保存为.png文件。但是无论我做什么,图表的尺寸都是300x300像素。

在Internet上,我找到了许多有关更改图表大小的解决方案,但是它们仅适用于将图表放入WinForm然后保存到文件的情况。

如果我的应用程序中没有WinForms,如何更改图表的大小?

这是我在代码中所做的一个虚拟示例

int[] yVal = { 1, 1, 1, 1, 1, 1, 1 };
string[] xName = { "a", "b", "b", "b", "b", "b", "b" };

System.Windows.Forms.DataVisualization.Charting.Chart Chart1 = new Chart();
Chart1.Titles.Add("Title");
Chart1.Series.Add(new Series());

Chart1.Series[0].XValueType = ChartValueType.String;
Chart1.Series[0].YValueType = ChartValueType.Int32;
Chart1.Series[0].Points.DataBindXY(xName, yVal);

Chart1.Palette = ChartColorPalette.EarthTones;

Chart1.Legends.Add(new Legend());
Chart1.Legends[0].Enabled = false;

ChartArea chartArea = new ChartArea();
chartArea.AxisX.Title = "X";
chartArea.AxisY.Title = "Y";
Chart1.ChartAreas.Add(chartArea);


Chart1.SaveImage("chart.png", ChartImageFormat.Png);

最佳答案

要获得1000px x 1000px的大图像,请在图表初始化后添加以下行:

Chart1.Size = new Size(1000, 1000);

10-05 20:09