[flexcoders] Re: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-06 Thread Jonathan Miranda
Here's the easiest way to explain it. Dataprovider: (x y filter) {a 1 red} {b 2 red} (c 3 red} {a 4 blue} {b 5 blue} {c 6 blue} LineChart with 2 FilteredLineSeries - one for red and one for blue. Right now... -With no category axis, I have on the x-axis: a b c a b c, with red on the first set

[flexcoders] RE: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-05 Thread Ely Greenfield
It'll take me a little longer to answer your first question, but as for the second...if you want to duplicate a component into a separate view (say, a print view), you've got a few options: 1) reparent the child into the other view. This is usually fine if you're going to do it, print it,

[flexcoders] RE: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-05 Thread Ely Greenfield
Jonathan -- The Category Axis maps values to catgegories...it can't know how to map the same value to multiple categories. What's the behavior you're looking for? Let me suggest one possibility. In a fully specified situation, the series names its xField, loads the value out of that field,

[flexcoders] Re: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-04 Thread Jonathan Miranda
My problem isn't the draw, because if I add the bitmap to the screen ala this.addChild(tempUI), it works fine (aka it shows up on the screen). It still prints blank though.also, the printJobOptions.printAsBitmap=true also makes anything always show up blank. Anyone actually used this before :)

[flexcoders] RE: FilteredLineSeries and Printing - ChartMan Ely, we need you!

2006-11-03 Thread Ely Greenfield
Hmm...a couple of things... 1) try passing an identity matrix to the draw() function. I don't think it will make a difference...passing null should be the same thing...but it's worth a try. 2) I didn't realize your container was a sprite. You can ditch the tempUI and just attach the bitmap