Avatar

Level 2

I am trying to replicate radzmar contribution to draw a pie chart (see http://forums.adobe.com/message/4036372)

But I want to integrate in a form I already have and use only Javascript (not FormCalc)

I have stopped trying to specify properties of the arc circles.

If I write:

var Sweep = 120;

Page.PieChart.Output.Pie[0].Bow[0].value.resolveNode("#arc").sweepAngle = Sweep;

It does not wotk. I tried also

Page.PieChart.Output.Pie[0].Bow[0].resolveNode("value.#arc").sweepAngle = Sweep;

Page.PieChart.Output.Pie[0].Bow[0].value.resolveNode("#arc.sweepAngle") = Sweep;

But they do not work.

Any quick help about it?

Same applies to other properties as startAngle and edge.color.value

J. Carlos