views:

268

answers:

1

When I use radius property in Flex plot chart It causes a warning says radius has been deprecated, please use radius style There's no online documents about this warning. How Can I use radius style ? Thanks.

+1  A: 

A good approach would be to experiment with a few different methods... seeing as how adobe has failed to provide examples on their live docs - PlotSeries

For example, you could try:

chart.setStyle('radius', 5);

Build your project and see what happens...

clownbaby