| 패키지 | mx.charts.chartClasses | 
| 인터페이스 | public interface IBar | 
| 구현자 | BarSeries, BarSet | 
| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
| 속성 | 정의 주체 | ||
|---|---|---|---|
| barWidthRatio : Number [쓰기 전용] 
	  Specifies how wide to render the items relative to the category.  | IBar | ||
| maxBarWidth : Number [쓰기 전용] 
	  Specifies how wide to draw the items, in pixels.  | IBar | ||
| offset : Number [쓰기 전용] 
	  Specifies how far to offset the center of the items
	  from the center of the available space, relative the category size.  | IBar | ||
barWidthRatio | 속성 | 
barWidthRatio:Number  [쓰기 전용] | 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
	  Specifies how wide to render the items relative to the category.
	  A value of 1 uses the entire space, while a value
	  of 0.6 uses 60% of the category's available space. 
	  You typically do not set this property directly.
	  A governing BarSet or BarChart would implicitly assign this value.
	  The actual size used is the smaller of barWidthRatio
	  and the maxbarWidth property
	  
	  
구현
    public function set barWidthRatio(value:Number):voidmaxBarWidth | 속성 | 
maxBarWidth:Number  [쓰기 전용] | 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
	  Specifies how wide to draw the items, in pixels.
	  The actual item width used is the smaller of this style
	  and the barWidthRatio property.
	  You typically do not set this property directly.
	  The BarSet or BarChart objects assign this value.
	  
	  
구현
    public function set maxBarWidth(value:Number):voidoffset | 속성 | 
offset:Number  [쓰기 전용] | 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
	  Specifies how far to offset the center of the items
	  from the center of the available space, relative the category size. 
	  The range of values is a percentage in the range
	  -100 to 100. 
	  Set to 0 to center the items in the space.
	  Set to -50 to center the item
	  at the beginning of the available space.
	  You typically do not set this property directly.
	  The BarSet or BarChart objects assign this value.
	 
	  
 기본값: 0.
구현
    public function set offset(value:Number):voidTue Jun 12 2018, 03:17 PM Z