包 | mx.charts.chartClasses |
接口 | public interface IBar |
实现器 | BarSeries, BarSet |
属性 | 定义方 | ||
---|---|---|---|
barWidthRatio : Number [只写] 指定项目相对于类别的呈现宽度。 | IBar | ||
maxBarWidth : Number [只写] 指定项目的绘制宽度(以像素为单位)。 | IBar | ||
offset : Number [只写] 指定项目中心偏离可用空间中心的距离(相对于类别大小)。 | IBar |
barWidthRatio | 属性 |
barWidthRatio:Number
[只写]
指定项目相对于类别的呈现宽度。值 1
表示使用整个空间,值 0.6
表示使用该类别可用空间的 60%。通常不直接设置此属性。处于控制地位的 BarSet 或 BarChart 会隐式分配此值。所采用的实际大小为 barWidthRatio
和 maxbarWidth
属性之中的较小者
public function set barWidthRatio(value:Number):void
maxBarWidth | 属性 |
maxBarWidth:Number
[只写]
指定项目的绘制宽度(以像素为单位)。实际使用的项目宽度是此样式和 barWidthRatio
属性中的较小者。通常不直接设置此属性。BarSet 或 BarChart 对象分配此值。
public function set maxBarWidth(value:Number):void
offset | 属性 |
offset:Number
[只写]
指定项目中心偏离可用空间中心的距离(相对于类别大小)。值的范围是介于 -100
和 100
之间的一个百分比。设置为 0
可使项目位于空间的中心位置。设置为 -50
可使项目的中心位于可用空间的开始处。通常不直接设置此属性。BarSet 或 BarChart 对象分配此值。
默认值为 0.
public function set offset(value:Number):void