Hi Marston,
Good question !! This is kind of a soar point with the current state of affairs of flash
rendering. I know this is probably not the answer you were looking for but here is
a way to achieve printing...
You can print the graph but not directly from the browser print function.
You can however embed a link in the chart to print it.
This is done via the link component using "print" as the target property.
So in your yml style file set the following components:
NOTE: Since the print button will be printed too ( Doh !! ) you should embed
some kind of image instead of text on the print link, so the printed graphs
won't suck too badly... )
<%=component :draw %>
components:
- <%=drawing :rect %>
fill_color: ccccccc
x: 180
y: 35
width: 75
height: 25
- <%=drawing :text %>
x: 203
y: 40
text: Print
<%=component :link %>
areas:
- <%=drawing :area %>
x: 180
y: 35
width: 75
height: 25
target: print
-Fernand