(仅限 Flex 数据可视化组件)
mx.controls.olapDataGridClasses
public class OLAPDataGridItemRendererProvider
继承OLAPDataGridItemRendererProvider Inheritance OLAPDataGridRendererProvider Inheritance Object

OLAPDataGridItemRendererProvider 实例使您可以为 OLAPDataGrid 控件中的项目指定 formatter。

另请参见

mx.controls.OLAPDataGrid
mx.formatters.Formatter


公共属性
 属性定义方
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
  formatter : Formatter
Formatter 类的实例或 Formatter 类的子类的实例,该实例已应用于关联 IOLAPElement 的文本。
OLAPDataGridItemRendererProvider
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
 Inheritedrenderer : IFactory
用于自定义 OLAPDataGrid 控件的渲染器对象。
OLAPDataGridRendererProvider
 InheritedstyleName : String
控制单元格外观的 CSS 样式声明的名称。
OLAPDataGridRendererProvider
 Inheritedtype : int
指定是否将渲染器应用于轴的维度 (OLAPDataGrid.OLAP_DIMENSION)、层次结构 (OLAPDataGrid.OLAP_HIERARCHY)、级别 (OLAPDataGrid.OLAP_LEVEL) 或成员 (OLAPDataGrid.OLAP_MEMBER)。
OLAPDataGridRendererProvider
 InheriteduniqueName : String
对其应用渲染器的 IOLAPElement 的唯一名称。
OLAPDataGridRendererProvider
公共方法
 方法定义方
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
返回指定对象的字符串表示形式。
Object
 Inherited
返回指定对象的原始值。
Object
属性详细信息
formatter属性
public var formatter:Formatter

Formatter 类的实例或 Formatter 类的子类的实例,该实例已应用于关联 IOLAPElement 的文本。

例如,对 OLAPDataGrid 控件应用 CurrencyFormatter formatter,如以下示例所示:

<mx:CurrencyFormatter id="usdFormatter" precision="2" 
          currencySymbol="$" decimalSeparatorFrom="."
          decimalSeparatorTo="." useNegativeSign="true" 
          useThousandsSeparator="true" alignSymbol="left"/>
      
      ...
      
      <mx:OLAPDataGrid id="myOLAPDG" 
          width="100%" height="100%">
      
          <mx:itemRendererProviders>
              <mx:OLAPDataGridItemRendererProvider 
                  uniqueName="[QuarterDim].[Quarter]"
                  type="{OLAPDataGrid.OLAP_HIERARCHY}"
                  formatter="{usdFormatter}"/>
          </mx:itemRendererProviders>
      </mx:OLAPDataGrid>

在此示例中,uniqueNametype 属性指定 Quarter 是 QuarterDim 尺寸的层次结构。