Convenience constructor for a two-axis Grid. Same as passing in an IList containing the two strings.

Namespace: Endeca.Navigation.Charting
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (0.0.0.0)

Syntax

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

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.
axisOne
Type: System..::..String
The names of the properties or dimensions that hold the labels of the first axis of the grid.
axisTwo
Type: System..::..String
The names of the properties or dimensions that hold the labels of the second axis of the grid.

See Also