Constructs a new QuantileCustomRenderSettings instance

Namespace:  EGIS.Web.Controls
Assembly:  EGIS.Web.Controls (in EGIS.Web.Controls.dll)

Syntax

Visual Basic
Public Sub New ( _
	renderSettings As RenderSettings, _
	quantileColors As Color(), _
	quantiles As Double(), _
	quantileKey As String, _
	importData As DataTable, _
	shapeJoinKey As String, _
	importJoinKey As String _
)
C#
public QuantileCustomRenderSettings(
	RenderSettings renderSettings,
	Color[] quantileColors,
	double[] quantiles,
	string quantileKey,
	DataTable importData,
	string shapeJoinKey,
	string importJoinKey
)
Visual C++
public:
QuantileCustomRenderSettings(
	RenderSettings^ renderSettings, 
	array<Color>^ quantileColors, 
	array<double>^ quantiles, 
	String^ quantileKey, 
	DataTable^ importData, 
	String^ shapeJoinKey, 
	String^ importJoinKey
)
JavaScript
EGIS.Web.Controls.QuantileCustomRenderSettings = function(renderSettings, quantileColors, quantiles, quantileKey, importData, shapeJoinKey, importJoinKey);

Parameters

renderSettings
Type: EGIS.ShapeFileLib..::..RenderSettings
Reference to a ShapeFile RenderSettings
quantileColors
Type: array<System.Drawing..::..Color>[]()[][]
Array of Colors to use. The number of Color elements should be 1 more than the number of quantile elements
quantiles
Type: array<System..::..Double>[]()[][]
Array of quantile values. Each successive element must be greater than the previous element. Example - {10, 50, 75}
quantileKey
Type: System..::..String
The name of the column in the imported data used to determine what color to render a shape
importData
Type: System.Data..::..DataTable
Data to join on the shapefile layer.
shapeJoinKey
Type: System..::..String
The column in the shapefile layer's dbf file used to join to importData
importJoinKey
Type: System..::..String
The column in importData used to join on the shapefile layer

See Also