Hi everyone,
I have a console application and I want to export a RadChart to image, I found this thread and I did as mentioned in the solution, the problem is that when I have over 50 input, the exported image appears very poorly.
In your example you put 4 values per serie
if you try with 100 values per serie you can notice that the exported image does not display correctly.
I think that the issue is from the width of the rectangle in ExportStyle.
I have a console application and I want to export a RadChart to image, I found this thread and I did as mentioned in the solution, the problem is that when I have over 50 input, the exported image appears very poorly.
In your example you put 4 values per serie
var itemsSource =
new
List<
double
>[] {
new
List<
double
> { 9, 2, 3, 4 },
new
List<
double
> { 5, 7, 3, 4 } };
I think that the issue is from the width of the rectangle in ExportStyle.