Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello guys,

when trying to display a bar chart with loooots of bars, the screen space is not enough. However, this wouldnt matter too much If I could at least save the image with a much higher resolution AND more details in it.

So far I managed to save the image with a bigger size via:
C#
chart1.Dock = DockStyle.None; //turn docking off
chart1.Width = chart1.Width * 3;
chart1.Height = chart1.Height * 3;
chart1.ChartAreas[0].Position.Height = 100;
chart1.ChartAreas[0].Position.Width = 100;
chart1.SaveImage(saveFile.FileName, ChartImageFormat.Jpeg);
chart1.Dock = DockStyle.Fill; //turn docking on again


PROBLEM: While the size increases (OK), the amount of detail (e.g. number of labels, etc.) does not. Also the labelfont size is waaay too small this way :(
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900