This question is locked. New answers and comments are not allowed.
Hi,
I wanna export a chart of mine to a Memory Stream, but need it in a specific size.
I looked at this thread: http://www.telerik.com/community/forums/silverlight/chart/how-to-save-a-chart-as-image-with-a-fixed-size.aspx
but in my opinion it seems very complicated to do such simple thing.
Is that the only way? Or is there somehow I could do something like this:
I wanna export a chart of mine to a Memory Stream, but need it in a specific size.
I looked at this thread: http://www.telerik.com/community/forums/silverlight/chart/how-to-save-a-chart-as-image-with-a-fixed-size.aspx
but in my opinion it seems very complicated to do such simple thing.
Is that the only way? Or is there somehow I could do something like this:
int height = 600;int width = 800;var stream = RadChart1.Save(height, width);