tags:

views:

176

answers:

2

Is there any way of drawing pie chart in j2me?

+2  A: 

You can draw one pie slice using the fillArc method of the Graphics class.

izb
+1  A: 

Yep, you're going to have to go with low-level drawing using Graphics methods such as fillArc , drawLine etc.

if you're using the high-level UI you can create a new Image, get its Graphics object and draw on that or you could just extend CustomItem.

Orr Matarasso