[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

This view compiles OLAP cubes for the specified fields. New data from the parent view is entered into one or more fact cubes (see MultidimCube). Old data from the parent view is removed from a fact cube. The dimensions of the fact cube are specified as parameters to the view. The fact cube can be one-dimensional, two-dimensional (tabular) or 3-dimenstional (tabular with pages). Parameters are: A mandatory array of derived measure names, such as "count", "stddev" etc., (see ViewFieldEnum) A mandatory measure field name. This field supplies the fact values in the cells of the cube. A mandatory column field name. This field supplies the members of dimension zero (column, 1-dim). An optional row field name. This field supplies the members of dimension one (row, 2-dim). An optional page field name. This field supplies the members of dimension two (page, 3-dim). The view post new data to child views that contains a Map with the Cube (see Cube). It does not post old data.

The following tables list the members exposed by the MultiDimStatsView type.

Public Methods

  NameDescription
AddView
Add a view to the viewable object.
(Inherited from ViewSupport.)
AttachesTo
Return null if the view will accept being attached to a particular object.
(Overrides .AttachesTo(Viewable).)
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetEnumerator
Returns an enumerator that iterates through the collection.
(Overrides .GetEnumerator().)
GetHashCode
Serves as a hash function for a particular type. GetHashCode() is suitable for use in hashing algorithms and data structures like a hash table.
(Inherited from Object.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
GetViews
Returns all added views.
(Inherited from ViewSupport.)
RemoveView
Remove a view.
(Inherited from ViewSupport.)
ToString
Returns a String that represents the current Object.
(Inherited from Object.)
Update
Notify that data has been added or removed from the Viewable parent. The last object in the newData array of objects would be the newest object added to the parent view. The first object of the oldData array of objects would be the oldest object removed from the parent view.

If the call to update contains new (inserted) data, then the first argument will be a non-empty list and the second will be empty. Similarly, if the call is a notification of deleted data, then the first argument will be empty and the second will be non-empty. Either the newData or oldData will be non-null. This method won't be called with both arguments being null, but either one could be null. The same is true for zero-length arrays. Either newData or oldData will be non-empty. If both are non-empty, then the update is a modification notification.

When update() is called on a view by the parent object, the data in newData will be in the collection of the parent, and its data structures will be arranged to reflect that. The data in oldData will not be in the parent's data structures, and any access to the parent will indicate that that data is no longer there.

(Overrides .Update(EventBean[](), EventBean[]()).)

Protected Methods

  NameDescription
Finalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)

Protected Fields

  NameDescription
parent
Parent viewable to this view - directly accessible by subclasses.
(Inherited from ViewSupport.)

Public Constructors

  NameDescription
MultiDimStatsViewNewOverloaded.

Public Properties

  NameDescription
ColumnField
Get or sets the name of the field to extract the column values from.

DerivedMeasures
Gets or sets the names of measures to derive from facts.

EventType
Provides metadata information about the type of object the event collection contains.
(Overrides .EventType.)
FactCube
For unit testing, returns fact cube.

HasViews
Test is there are any views to the Viewable.
(Inherited from ViewSupport.)
Id
Gets the unique id for the view
(Inherited from ViewSupport.)
MeasureField
Gets or sets the name of the field to extract the measure values from.

PageField
Gets or sets the name of the field to extract the page values from.

Parent
Gets or sets the View's parent Viewable.
(Overrides .Parent.)
RowField
Gets or sets the row field.

ViewServiceContext
Gets or sets the context instances used by the view.

Explicit Interface Implementations

  NameDescription
Explicit interface implemetationIEnumerable.System.Collections.IEnumerable.GetEnumerator
Returns an enumerator that iterates through a collection.
(Inherited from ViewSupport.)