Constructs a Grid from the specified Endeca analytics data.

Namespace: Endeca.Navigation.Charting
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
public Grid(
	IEnumerator analytics,
	string valueName,
	IList axisNames
)
Visual Basic
Public Sub New ( _
	analytics As IEnumerator, _
	valueName As String, _
	axisNames As IList _
)
Visual C++
public:
Grid(
	IEnumerator^ analytics, 
	String^ valueName, 
	IList^ axisNames
)

Parameters

analytics
Type: System.Collections..::..IEnumerator
The analytics results to use.
valueName
Type: System..::..String
The name of the property or dimension that holds the value to chart.
axisNames
Type: System.Collections..::..IList
A list of the names of the properties or dimensions that hold the labels of each axis of the grid.

Exceptions

ExceptionCondition
System..::..ArgumentException If any argument is null.

See Also