| Pacote | mx.controls.olapDataGridClasses |
| Classe | public class OLAPDataGridItemRendererProvider |
| Herança | OLAPDataGridItemRendererProvider OLAPDataGridRendererProvider Object |
| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de runtime: | Flash Player 9, AIR 1.1 |
Elementos da API relacionados
Propriedades públicas
| Propriedade | Definido por | ||
|---|---|---|---|
![]() | constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | |
| formatter : Formatter
An instance of the Formatter class, or of a subclass of the Formatter class,
applied to the text to of the associated IOLAPElement. | OLAPDataGridItemRendererProvider | ||
![]() | renderer : IFactory
The renderer object used for customizing the OLAPDataGrid control. | OLAPDataGridRendererProvider | |
![]() | styleName : String
The name of a CSS style declaration for controlling
the appearance of the cell. | OLAPDataGridRendererProvider | |
![]() | type : int
Specifies whether the renderer is applied to a
dimension (OLAPDataGrid.OLAP_DIMENSION),
hierarchy(OLAPDataGrid.OLAP_HIERARCHY),
level(OLAPDataGrid.OLAP_LEVEL),
or member (OLAPDataGrid.OLAP_MEMBER) of an axis. | OLAPDataGridRendererProvider | |
![]() | uniqueName : String
The unique name of the IOLAPElement to which the renderer is applied. | OLAPDataGridRendererProvider | |
Métodos públicos
Detalhes da propriedade
formatter | propriedade |
public var formatter:Formatter| Versão da linguagem: | ActionScript 3.0 |
| Versão de produto: | Flex 3 |
| Versões de runtime: | Flash Player 9, AIR 1.1 |
An instance of the Formatter class, or of a subclass of the Formatter class, applied to the text to of the associated IOLAPElement.
For example, you apply a CurrencyFormatter formatter to an OLAPDataGrid control, as the following example shows:
<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>
In this example, the uniqueName and type properties
specify that Quarter is a hierarchy of the QuarterDim dimension.
Wed Jun 13 2018, 11:10 AM Z
Ocultar propriedades públicas herdadas
Mostrar propriedades públicas herdadas