Unfortunately, I neglected to log this bug, but have now:
https://bugs.adobe.com/jira/browse/FLEXDMV-1862
The related bug (1669) was deferred.
On Wed, Jun 18, 2008 at 9:42 AM, Tim Hoff <[EMAIL PROTECTED]> wrote:
> Hi Richard,
>
> For a work-around, first give each ColumnSeries an id. If you also want to
> change the z-order, give the ColumnSet an id as well. Then, on
> CreationComplete, do something like this to offset the columns and/or change
> the depth.
>
> private function onCreationComplete(): void
> {
> // offset columns
> myFirstColumnSeries.move(-8,0);
> mySecondColumnSeries.move(myFirstColumnSeries.x+16,0);
>
> // change depth (z-order)
> myColumnSet.swapChildren(myFirstColumnSeries,mySecondColumnSeries);
> }
>
> -TH
>
>
> --- In [email protected], "Richard Rodseth" <[EMAIL PROTECTED]>
> wrote:
> >
> > I sent code to Sunil and Sangavi demonstrating the bug.
> > Now I'm looking for a workaround.
> > If two ColumnSeries (different date axes) are displayed at the same
> > location, I would like to be able to see both columns clearly, eg.
> through
> > stroke/fill/alpha choices or by offsetting them somehow to simulate a
> > cluster. Say the colors are red and green. With a low alpha value and red
> > and green strokes, I can at least ensure that there's a visible red or
> green
> > line at the top of the column, but one of the columns is always on top in
> > the z-order, regardless of column height. Perhaps a pair of custom
> > BoxItemRenderers that halve the box?
> > Any other ideas? Thanks.
> >
> >
> > On Sun, Jun 1, 2008 at 11:28 PM, Sunil Bannur [EMAIL PROTECTED] wrote:
> >
> > > Can you send a snippet of your code or screenshot for more help.
> > >
> > >
> > >
> > > Thanks
> > >
> > > -Sunil
> > >
> > >
> > >
> > > *From:* [email protected] [mailto:[EMAIL PROTECTED]
> *On
> > > Behalf Of *Richard Rodseth
> > > *Sent:* Thursday, May 29, 2008 10:33 PM
> > > *To:* [email protected]
> > > *Subject:* [flexcoders] ColumnSet vs Multiple axes
> > >
> > >
> > >
> > > I have two column series related to distinct horizontal axes (of type
> > > DateTimeAxis).
> > >
> > > If I include the two series without wrapping them in a ColumnSet, the
> > > columns from each series display overlaid on each other.
> > >
> > > However, if I wrap them in a ColumnSet of type "clustered", only one
> > > series displays. Has anyone else encountered this?
> > >
> > > Thanks in advance.
> > >
> > >
> > >
> >
>
>