Problem with creating a PIE CHART dynamically

Hi,
I’m trying to build a pie chart with dynamic data like in the picture below :

image.png (29,4 Ko)
In this exemple i fill three variables with static data but the chart doesn’t display the pie.
Thanks a lot for your advice.

@deid

Could you please provide the code you are using to create the pie chart and any error messages you are encountering?

@Professionalize.Discourse
Hi,
I can work only at template level. So, all is in the picture. My question is simply how can I fill data dynamically in a chart with three parts. Thanks

@deid The data passed to the chart must be array not individual values. For example you can try using the following syntax:

<<var [categories = new string[] { “first”, “second”, “third” }]>>
<<var [values = new int[] { 450, 4952, 1292 }]>>
<<var [seq = new int[] { 0, 1, 2 }]>>
<<var [data = seq.Select(i => new { c = categories.Skip(i).First(), v = values.Skip(i).First() })]>>

Here is the template:
in.docx (28.8 KB)
and output
out.docx (14.0 KB)

@alexey.noskov
Thank you for your reply. Have a nice day

1 Like