Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
   You can set the left and the right gutter to 0 to make the gap smaller and
   also making the axis not that thick.




On Thu, Aug 6, 2009 at 3:28 PM, Richard Rodseth wrote:
>
>
> Yes, that's pretty much what I've got now. It's not bad (and some might even
> prefer not having the chart re-layout to occupy the freed up space when an
> axis is hidden).
>
> Thanks.
>
> On Thu, Aug 6, 2009 at 3:16 PM, Vivian Richard  wrote:
>>
>>
>>
>> Try this code it does make the axis invisible:
>>
>> 
>> 
>> http://www.adobe.com/2006/mxml";>
>> 
>>
>> > color="{smithColor}"
>> weight="8"
>> alpha=".75"
>> caps="square"
>> />
>>
>> > color="{deckerColor}"
>> weight="8"
>> alpha=".75"
>> caps="square"
>> />
>>
>> 
>> 
>> 
>> 
>> 
>>
>> 
>> 
>> 
>>
>> 
>> > visible="{leftBoolean}">
>> {h1Stroke}
>> 
>> > visible="{rightBoolean}">
>> {h2Stroke}
>> 
>> 
>>
>> 
>> > horizontalAxis="{h1}"
>> dataProvider="{SMITH}"
>> yField="close"
>> displayName="SMITH"
>> >
>> 
>> 
>> 
>>
>> 
>> 
>> 
>> 
>> > horizontalAxis="{h1}"
>> dataProvider="{DECKER}"
>> yField="close"
>> displayName="DECKER"
>> >
>> 
>> > maximum="170"/>
>> 
>>
>> 
>> > color="{deckerColor}"
>> weight="4"
>> alpha="1"
>> />
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>>
>> On Thu, Aug 6, 2009 at 3:05 PM, Richard Rodseth wrote:
>> >
>> >
>> > The chart has two sets of dynamically-generated series A & B, one
>> > associated
>> > with the left axis, one with the right. There are two checkboxes
>> > controlling
>> > the visibility. I would like each checkbox to remove the corresponding
>> > series set, and corresponding axis. So you can view none, A (left), B
>> > (right) or A & B (left and right).
>> >
>> > I was able to get rid of the unwanted third (default) axis only if I
>> > defined
>> > the verticalAxisRenderers within the body of the LineChart tag rather
>> > than
>> > using my buidAxisRenderers binding function. If I then call
>> > buildAxisRenderers from within buildSeriesList, the axes disappear, but
>> > the
>> > bogus one reappears as soon as I uncheck both checkboxes.
>> >
>> > My workaround for now is to leave the verticalAxisRenders property
>> > unchanged, but set the visibility flag of each renderer instead. This
>> > means
>> > the chart does not re-layout.
>> >
>> > Thanks.
>> >
>> > On Thu, Aug 6, 2009 at 2:38 PM, Vivian Richard 
>> > wrote:
>> >>
>> >>
>> >>
>> >> Do you think that you get this gap, because there is another axis
>> >> there?
>> >> By the way as I understand you need 2 axises - left and right - then
>> >> why
>> >> are you adding another axis on left and then rendering. Why not just
>> >> render the axis that comes with the chart?
>> >>
>> >> On Thu, Aug 6, 2009 at 1:24 PM, Richard Rodseth
>> >> wrote:
>> >> >
>> >> >
>> >> > I don't think that's it. Seems others have the same issue:
>> >> >
>> >> >
>> >> >
>> >> > http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
>> >> >
>> >> > Even if I do what that thread suggests as below, I get a gap on the
>> >> > left
>> >> > when the right axis is added.
>> >> >
>> >> >        private function buildAxisRenderers(showLeftAxis:Boolean,
>> >> > showRightAxis:Boolean):Array {
>> >> >
>> >> >             // Workaround
>> >> >             var verticalAxisRenderer:AxisRenderer = new
>> >> > AxisRenderer();
>> >> >     verticalAxisRenderer.visible = false;
>> >> >     verticalAxisRenderer.height = 0;
>> >> >     verticalAxisRenderer.width = 0;
>> >> >     verticalAxisRenderer.setStyle("showLabels", false);
>> >> >     lineChart.verticalAxisRenderer = verticalAxisRenderer;
>> >> >
>> >> >               if (showLeftAxis && showRightAxis)
>> >> >                   return [ leftAxisRenderer, rightAxisRenderer];
>> >> >             if (showLeftAxis && !showRightAxis)
>> >> >                   return [ leftAxisRenderer ];
>> >> >             if (showRightAxis && !showLeftAxis)
>> >> >                 return [ rightAxisRenderer ];
>> >> >             return [ ];
>> >> >
>> >> >           }
>> >> >
>> >> >
>> >> > On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard 
>> >> > wrote:
>> >> >>
>> >> >>
>> >> >>
>> >> >> I guess you are adding an additional axis. As you know if you
>> >> >> do not define your axis and put an id for it. The chart will add
>> >> >> the default axis. Now do not do it that way declare both axis
>> >> >> and then tie up the axis renderer with it. I guess that will resolve
>> >> >> you issue.
>> >> >>
>> >> >> Here you can see the example:
>> >> >> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
>> >> >>
>> >> >> On Thu, Aug 6, 2009 at 11:52 AM, Richard Rodseth
>> >> >> wrote:
>> >> >> >
>> >> >> >
>> >> >> > I have a line chart where the user can show/hide the left and
>> >> >> > right
>> >> >> > axes
>> >> >> > (which have custom colours) and the corresponding series.
>> >> >> >
>> >> >> >         > >> >> >         dataProvider="{...}"
>> >> >> >
>> >> >> > ver

Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Richard Rodseth
Yes, that's pretty much what I've got now. It's not bad (and some might even
prefer not having the chart re-layout to occupy the freed up space when an
axis is hidden).

Thanks.

On Thu, Aug 6, 2009 at 3:16 PM, Vivian Richard  wrote:

>
>
> Try this code it does make the axis invisible:
>
> 
> 
> http://www.adobe.com/2006/mxml";>
> 
>
>  color="{smithColor}"
> weight="8"
> alpha=".75"
> caps="square"
> />
>
>  color="{deckerColor}"
> weight="8"
> alpha=".75"
> caps="square"
> />
>
> 
> 
> 
> 
> 
>
> 
> 
> 
>
> 
>  visible="{leftBoolean}">
> {h1Stroke}
> 
>  visible="{rightBoolean}">
> {h2Stroke}
> 
> 
>
> 
>  horizontalAxis="{h1}"
> dataProvider="{SMITH}"
> yField="close"
> displayName="SMITH"
> >
> 
> 
> 
>
> 
> 
> 
> 
>  horizontalAxis="{h1}"
> dataProvider="{DECKER}"
> yField="close"
> displayName="DECKER"
> >
> 
>  maximum="170"/>
> 
>
> 
>  color="{deckerColor}"
> weight="4"
> alpha="1"
> />
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>
>
> On Thu, Aug 6, 2009 at 3:05 PM, Richard 
> Rodseth>
> wrote:
> >
> >
> > The chart has two sets of dynamically-generated series A & B, one
> associated
> > with the left axis, one with the right. There are two checkboxes
> controlling
> > the visibility. I would like each checkbox to remove the corresponding
> > series set, and corresponding axis. So you can view none, A (left), B
> > (right) or A & B (left and right).
> >
> > I was able to get rid of the unwanted third (default) axis only if I
> defined
> > the verticalAxisRenderers within the body of the LineChart tag rather
> than
> > using my buidAxisRenderers binding function. If I then call
> > buildAxisRenderers from within buildSeriesList, the axes disappear, but
> the
> > bogus one reappears as soon as I uncheck both checkboxes.
> >
> > My workaround for now is to leave the verticalAxisRenders property
> > unchanged, but set the visibility flag of each renderer instead. This
> means
> > the chart does not re-layout.
> >
> > Thanks.
> >
> > On Thu, Aug 6, 2009 at 2:38 PM, Vivian Richard 
> > >
> wrote:
> >>
> >>
> >>
> >> Do you think that you get this gap, because there is another axis there?
> >> By the way as I understand you need 2 axises - left and right - then why
> >> are you adding another axis on left and then rendering. Why not just
> >> render the axis that comes with the chart?
> >>
> >> On Thu, Aug 6, 2009 at 1:24 PM, Richard 
> >> Rodseth>
> wrote:
> >> >
> >> >
> >> > I don't think that's it. Seems others have the same issue:
> >> >
> >> >
> >> >
> http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
> >> >
> >> > Even if I do what that thread suggests as below, I get a gap on the
> left
> >> > when the right axis is added.
> >> >
> >> >private function buildAxisRenderers(showLeftAxis:Boolean,
> >> > showRightAxis:Boolean):Array {
> >> >
> >> > // Workaround
> >> > var verticalAxisRenderer:AxisRenderer = new
> AxisRenderer();
> >> > verticalAxisRenderer.visible = false;
> >> > verticalAxisRenderer.height = 0;
> >> > verticalAxisRenderer.width = 0;
> >> > verticalAxisRenderer.setStyle("showLabels", false);
> >> > lineChart.verticalAxisRenderer = verticalAxisRenderer;
> >> >
> >> >   if (showLeftAxis && showRightAxis)
> >> >   return [ leftAxisRenderer, rightAxisRenderer];
> >> > if (showLeftAxis && !showRightAxis)
> >> >   return [ leftAxisRenderer ];
> >> > if (showRightAxis && !showLeftAxis)
> >> > return [ rightAxisRenderer ];
> >> > return [ ];
> >> >
> >> >   }
> >> >
> >> >
> >> > On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard 
> >> > 
> >
> >> > wrote:
> >> >>
> >> >>
> >> >>
> >> >> I guess you are adding an additional axis. As you know if you
> >> >> do not define your axis and put an id for it. The chart will add
> >> >> the default axis. Now do not do it that way declare both axis
> >> >> and then tie up the axis renderer with it. I guess that will resolve
> >> >> you issue.
> >> >>
> >> >> Here you can see the example:
> >> >> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
> >> >>
> >> >> On Thu, Aug 6, 2009 at 11:52 AM, Richard 
> >> >> Rodseth
> >
> >> >> wrote:
> >> >> >
> >> >> >
> >> >> > I have a line chart where the user can show/hide the left and right
> >> >> > axes
> >> >> > (which have custom colours) and the corresponding series.
> >> >> >
> >> >> >  >> >> > dataProvider="{...}"
> >> >> >
> >> >> > verticalAxisRenderers="{this.buildAxisRenderers(...)}"
> >> >> > series="{this.buildSeriesList(...)}"
> >> >> > >
> >> >> >
> >> >> >Works fine, except I get two left axes, my custom one and the
> >> >> > default
> >> >> > grey one which never goes away. Any ideas? Thanks in advance.
> >> >> >
> >> >> >
> >> >> >
> >> >
> >> >
> >
> >
>  
>


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
   Try this code it does make the axis invisible:



http://www.adobe.com/2006/mxml";>
  

  

  

  
 

   








{h1Stroke}


{h2Stroke}




   





   

   
   







   

 
 
 




 
  





















On Thu, Aug 6, 2009 at 3:05 PM, Richard Rodseth wrote:
>
>
> The chart has two sets of dynamically-generated series A & B, one associated
> with the left axis, one with the right. There are two checkboxes controlling
> the visibility. I would like each checkbox to remove the corresponding
> series set, and corresponding axis. So you can view none, A (left), B
> (right) or A & B (left and right).
>
> I was able to get rid of the unwanted third (default) axis only if I defined
> the verticalAxisRenderers within the body of the LineChart tag rather than
> using my buidAxisRenderers binding function. If I then call
> buildAxisRenderers from within buildSeriesList, the axes disappear, but the
> bogus one reappears as soon as I uncheck both checkboxes.
>
> My workaround for now is to leave the verticalAxisRenders property
> unchanged, but set the visibility flag of each renderer instead. This means
> the chart does not re-layout.
>
> Thanks.
>
> On Thu, Aug 6, 2009 at 2:38 PM, Vivian Richard  wrote:
>>
>>
>>
>> Do you think that you get this gap, because there is another axis there?
>> By the way as I understand you need 2 axises - left and right - then why
>> are you adding another axis on left and then rendering. Why not just
>> render the axis that comes with the chart?
>>
>> On Thu, Aug 6, 2009 at 1:24 PM, Richard Rodseth wrote:
>> >
>> >
>> > I don't think that's it. Seems others have the same issue:
>> >
>> >
>> > http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
>> >
>> > Even if I do what that thread suggests as below, I get a gap on the left
>> > when the right axis is added.
>> >
>> >        private function buildAxisRenderers(showLeftAxis:Boolean,
>> > showRightAxis:Boolean):Array {
>> >
>> >             // Workaround
>> >             var verticalAxisRenderer:AxisRenderer = new AxisRenderer();
>> >     verticalAxisRenderer.visible = false;
>> >     verticalAxisRenderer.height = 0;
>> >     verticalAxisRenderer.width = 0;
>> >     verticalAxisRenderer.setStyle("showLabels", false);
>> >     lineChart.verticalAxisRenderer = verticalAxisRenderer;
>> >
>> >               if (showLeftAxis && showRightAxis)
>> >                   return [ leftAxisRenderer, rightAxisRenderer];
>> >             if (showLeftAxis && !showRightAxis)
>> >                   return [ leftAxisRenderer ];
>> >             if (showRightAxis && !showLeftAxis)
>> >                 return [ rightAxisRenderer ];
>> >             return [ ];
>> >
>> >           }
>> >
>> >
>> > On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard 
>> > wrote:
>> >>
>> >>
>> >>
>> >> I guess you are adding an additional axis. As you know if you
>> >> do not define your axis and put an id for it. The chart will add
>> >> the default axis. Now do not do it that way declare both axis
>> >> and then tie up the axis renderer with it. I guess that will resolve
>> >> you issue.
>> >>
>> >> Here you can see the example:
>> >> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
>> >>
>> >> On Thu, Aug 6, 2009 at 11:52 AM, Richard Rodseth
>> >> wrote:
>> >> >
>> >> >
>> >> > I have a line chart where the user can show/hide the left and right
>> >> > axes
>> >> > (which have custom colours) and the corresponding series.
>> >> >
>> >> >         > >> >         dataProvider="{...}"
>> >> >
>> >> > verticalAxisRenderers="{this.buildAxisRenderers(...)}"
>> >> >         series="{this.buildSeriesList(...)}"
>> >> >         >
>> >> >
>> >> >    Works fine, except I get two left axes, my custom one and the
>> >> > default
>> >> > grey one which never goes away. Any ideas? Thanks in advance.
>> >> >
>> >> >
>> >> >
>> >
>> >
>
> 


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Richard Rodseth
The chart has two sets of dynamically-generated series A & B, one associated
with the left axis, one with the right. There are two checkboxes controlling
the visibility. I would like each checkbox to remove the corresponding
series set, and corresponding axis. So you can view none, A (left), B
(right) or A & B (left and right).

I was able to get rid of the unwanted third (default) axis only if I defined
the verticalAxisRenderers within the body of the LineChart tag rather than
using my buidAxisRenderers binding function. If I then call
buildAxisRenderers from within buildSeriesList, the axes disappear, but the
bogus one reappears as soon as I uncheck both checkboxes.

My workaround for now is to leave the verticalAxisRenders property
unchanged, but set the visibility flag of each renderer instead. This means
the chart does not re-layout.

Thanks.

On Thu, Aug 6, 2009 at 2:38 PM, Vivian Richard  wrote:

>
>
> Do you think that you get this gap, because there is another axis there?
> By the way as I understand you need 2 axises - left and right - then why
> are you adding another axis on left and then rendering. Why not just
> render the axis that comes with the chart?
>
>
> On Thu, Aug 6, 2009 at 1:24 PM, Richard 
> Rodseth>
> wrote:
> >
> >
> > I don't think that's it. Seems others have the same issue:
> >
> >
> http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
> >
> > Even if I do what that thread suggests as below, I get a gap on the left
> > when the right axis is added.
> >
> >private function buildAxisRenderers(showLeftAxis:Boolean,
> > showRightAxis:Boolean):Array {
> >
> > // Workaround
> > var verticalAxisRenderer:AxisRenderer = new AxisRenderer();
> > verticalAxisRenderer.visible = false;
> > verticalAxisRenderer.height = 0;
> > verticalAxisRenderer.width = 0;
> > verticalAxisRenderer.setStyle("showLabels", false);
> > lineChart.verticalAxisRenderer = verticalAxisRenderer;
> >
> >   if (showLeftAxis && showRightAxis)
> >   return [ leftAxisRenderer, rightAxisRenderer];
> > if (showLeftAxis && !showRightAxis)
> >   return [ leftAxisRenderer ];
> > if (showRightAxis && !showLeftAxis)
> > return [ rightAxisRenderer ];
> > return [ ];
> >
> >   }
> >
> >
> > On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard 
> > >
> wrote:
> >>
> >>
> >>
> >> I guess you are adding an additional axis. As you know if you
> >> do not define your axis and put an id for it. The chart will add
> >> the default axis. Now do not do it that way declare both axis
> >> and then tie up the axis renderer with it. I guess that will resolve
> >> you issue.
> >>
> >> Here you can see the example:
> >> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
> >>
> >> On Thu, Aug 6, 2009 at 11:52 AM, Richard 
> >> Rodseth
> >
> >> wrote:
> >> >
> >> >
> >> > I have a line chart where the user can show/hide the left and right
> axes
> >> > (which have custom colours) and the corresponding series.
> >> >
> >> >  >> > dataProvider="{...}"
> >> > verticalAxisRenderers="{this.buildAxisRenderers(...)}"
> >> > series="{this.buildSeriesList(...)}"
> >> > >
> >> >
> >> >Works fine, except I get two left axes, my custom one and the
> default
> >> > grey one which never goes away. Any ideas? Thanks in advance.
> >> >
> >> >
> >> >
> >
> >
>  
>


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
   Do you think that you get this gap, because there is another axis there?
   By the way as I understand you need 2 axises - left and right - then why
   are you adding another axis on left and then rendering. Why not just
   render the axis that comes with the chart?





On Thu, Aug 6, 2009 at 1:24 PM, Richard Rodseth wrote:
>
>
> I don't think that's it. Seems others have the same issue:
>
> http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html
>
> Even if I do what that thread suggests as below, I get a gap on the left
> when the right axis is added.
>
>        private function buildAxisRenderers(showLeftAxis:Boolean,
> showRightAxis:Boolean):Array {
>
>             // Workaround
>             var verticalAxisRenderer:AxisRenderer = new AxisRenderer();
>     verticalAxisRenderer.visible = false;
>     verticalAxisRenderer.height = 0;
>     verticalAxisRenderer.width = 0;
>     verticalAxisRenderer.setStyle("showLabels", false);
>     lineChart.verticalAxisRenderer = verticalAxisRenderer;
>
>               if (showLeftAxis && showRightAxis)
>                   return [ leftAxisRenderer, rightAxisRenderer];
>             if (showLeftAxis && !showRightAxis)
>                   return [ leftAxisRenderer ];
>             if (showRightAxis && !showLeftAxis)
>                 return [ rightAxisRenderer ];
>             return [ ];
>
>           }
>
>
> On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard  wrote:
>>
>>
>>
>> I guess you are adding an additional axis. As you know if you
>> do not define your axis and put an id for it. The chart will add
>> the default axis. Now do not do it that way declare both axis
>> and then tie up the axis renderer with it. I guess that will resolve
>> you issue.
>>
>> Here you can see the example:
>> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
>>
>> On Thu, Aug 6, 2009 at 11:52 AM, Richard Rodseth
>> wrote:
>> >
>> >
>> > I have a line chart where the user can show/hide the left and right axes
>> > (which have custom colours) and the corresponding series.
>> >
>> >         > >         dataProvider="{...}"
>> >         verticalAxisRenderers="{this.buildAxisRenderers(...)}"
>> >         series="{this.buildSeriesList(...)}"
>> >         >
>> >
>> >    Works fine, except I get two left axes, my custom one and the default
>> > grey one which never goes away. Any ideas? Thanks in advance.
>> >
>> >
>> >
>
> 


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Richard Rodseth
I don't think that's it. Seems others have the same issue:

http://www.nabble.com/flex-charts:-disable-default-verticalAxisRenderer-issue-td22309463.html

Even if I do what that thread suggests as below, I get a gap on the left
when the right axis is added.

   private function buildAxisRenderers(showLeftAxis:Boolean,
showRightAxis:Boolean):Array {

// Workaround
var verticalAxisRenderer:AxisRenderer = new AxisRenderer();
verticalAxisRenderer.visible = false;
verticalAxisRenderer.height = 0;
verticalAxisRenderer.width = 0;
verticalAxisRenderer.setStyle("showLabels", false);
lineChart.verticalAxisRenderer = verticalAxisRenderer;

  if (showLeftAxis && showRightAxis)
  return [ leftAxisRenderer, rightAxisRenderer];
if (showLeftAxis && !showRightAxis)
  return [ leftAxisRenderer ];
if (showRightAxis && !showLeftAxis)
return [ rightAxisRenderer ];
return [ ];
  }


On Thu, Aug 6, 2009 at 12:45 PM, Vivian Richard  wrote:

>
>
> I guess you are adding an additional axis. As you know if you
> do not define your axis and put an id for it. The chart will add
> the default axis. Now do not do it that way declare both axis
> and then tie up the axis renderer with it. I guess that will resolve
> you issue.
>
> Here you can see the example:
> http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html
>
>
> On Thu, Aug 6, 2009 at 11:52 AM, Richard 
> Rodseth>
> wrote:
> >
> >
> > I have a line chart where the user can show/hide the left and right axes
> > (which have custom colours) and the corresponding series.
> >
> >  > dataProvider="{...}"
> > verticalAxisRenderers="{this.buildAxisRenderers(...)}"
> > series="{this.buildSeriesList(...)}"
> > >
> >
> >Works fine, except I get two left axes, my custom one and the default
> > grey one which never goes away. Any ideas? Thanks in advance.
> >
> >
> >
>  
>


Re: [flexcoders] Line chart with no axes

2009-08-06 Thread Vivian Richard
I guess you are adding an additional axis. As you know if you
do not define your axis and put an id for it. The chart will add
the default axis. Now do not do it that way declare both axis
and then tie up the axis renderer with it. I guess that will resolve
you issue.

Here you can see the example:
http://livedocs.adobe.com/flex/3/langref/mx/charts/AxisRenderer.html




On Thu, Aug 6, 2009 at 11:52 AM, Richard Rodseth wrote:
>
>
> I have a line chart where the user can show/hide the left and right axes
> (which have custom colours) and the corresponding series.
>
>                  dataProvider="{...}"
>         verticalAxisRenderers="{this.buildAxisRenderers(...)}"
>         series="{this.buildSeriesList(...)}"
>         >
>
>    Works fine, except I get two left axes, my custom one and the default
> grey one which never goes away. Any ideas? Thanks in advance.
>
>
> 


[flexcoders] Line chart with no axes

2009-08-06 Thread Richard Rodseth
I have a line chart where the user can show/hide the left and right axes
(which have custom colours) and the corresponding series.



   Works fine, except I get two left axes, my custom one and the default
grey one which never goes away. Any ideas? Thanks in advance.