Drawing on a CartesianDataCanvas - Any way to draw an ellipse that is partially off the chart?
Posted
by Joe Arasin
on Stack Overflow
See other posts from Stack Overflow
or by Joe Arasin
Published on 2009-09-18T18:40:47Z
Indexed on
2010/03/11
21:04 UTC
Read the original article
Hit count: 316
flex
|actionscript-3
I'm attempting to draw a background to a chart. If I try to call
canvas.beginFill(0xff0000,1)
canvas.drawEllipse(10,200,300,-30);
canvas.endFill()
And -30 is outside the range of the chart, it won't draw anything. I want it to draw an ellipse that is cut off by the edge of the chart.
© Stack Overflow or respective owner