[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.

Namespace: net.esper.view.stat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public NotInheritable Class MultiDimStatsView _
	Inherits ViewSupport _
	Implements ContextAwareView
C#
public sealed class MultiDimStatsView : ViewSupport, ContextAwareView
Visual C++
public ref class MultiDimStatsView sealed : public ViewSupport, ContextAwareView

Inheritance Hierarchy

System.Object
  net.esper.view.ViewSupport
    net.esper.view.stat.MultiDimStatsView