--- In [email protected], Maciek Sakrejda <[EMAIL PROTECTED]> wrote: > > Sorry--I wasn't clear. There's a gutter property on the AxisRenderer, > but when I set it explicitly, one of the methods called by the setter > throws a null reference error (presumably because I'm calling the setter > at the wrong time). I was asking when to call the gutter setter.
Try
<mx:Style>
ColumnChart {
gutterRight:20;
gutterLeft:20;
gutterTop:20;
gutterBottom:20;
}
</mx:Style>

