I have an extension of ChartElement that draws what amounts to a
little flag on the parent chart.  What I have so far been unable to do
is to get it to use a Resize effect when you click on it.  I have
managed to get other effects to play on it but that one does not seem
to do anything.

The updateDisplayList function has the following lines to draw the
chart element:
graphics.moveTo(point.x,point.y);
graphics.beginFill(0x96CEFD,.6);
graphics.lineStyle(2,0x017C98);
graphics.lineTo(point.x     , point.y - 30);
graphics.lineTo(point.x + 25, point.y - 30);
graphics.lineTo(point.x + 25, point.y - 15);
graphics.lineTo(point.x     , point.y - 15);
graphics.endFill();

Any suggestions for how to get a resize effect on it?

Reply via email to