RE: [cfaussie] CFChart and emailing

2011-03-21 Thread Cassie Woolley
I have done it like this: cfchart name=myChart format = png dataBackgroundColor = ###request.color_background# showBorder = no showLegend = no chartWidth=220 chartHeight=270 pieslicestyle=sliced style=piechart.xml cfchartseries type=pie

RE: [cfaussie] CFChart and emailing

2011-03-21 Thread Steve Onnis
You will need to use the name attribute so you can access the binary data of the chart. From here you can use that to save it to a filename on the file system or attach it to an email. Keep in mind though you wont get all the hovering or anything. It is just the chart itself From:

RE: [cfaussie] Passing attributescollection into cfimport tag libraries

2011-03-21 Thread Glen Dunlop
You need to do it this way. utils:foo attributecollection=#someStruct# / From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Steve Onnis Sent: Tuesday, 22 March 2011 1:34 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Passing

Re: [cfaussie] Passing attributescollection into cfimport tag libraries

2011-03-21 Thread Kym Kovan
On 22/03/2011 13:33, Steve Onnis wrote: Is there a way to pass a collection into a cfimport tag library tag item? For example cfimport taglib=”lib” prefix=”utils” / utils:foo attributescollection=”#someStruct#” / I have tried this but it doesn’t seem to work its singular and without the

RE: [cfaussie] Passing attributescollection into cfimport tag libraries

2011-03-21 Thread Glen Dunlop
I actually use quotes and it works for me. -Original Message- From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Kym Kovan Sent: Tuesday, 22 March 2011 2:32 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Passing attributescollection into

RE: [cfaussie] Passing attributescollection into cfimport tag libraries

2011-03-21 Thread Steve Onnis
Thanks guys. Just needed to spell it right :) -Original Message- From: Glen Dunlop [mailto:glen.dun...@gmail.com] Sent: Tuesday, 22 March 2011 2:37 PM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] Passing attributescollection into cfimport tag libraries I actually use quotes

Re: [cfaussie] Passing attributescollection into cfimport tag libraries

2011-03-21 Thread Kym Kovan
On 22/03/2011 14:36, Glen Dunlop wrote: I actually use quotes and it works for me. which is what you would expect. I admit to being surprised when it errored but it did. I'm a bit old-fashionedy and like to do this when building structures as I find it more readable and maintainable: