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(), _
	shapeFieldName As String, _
	tooltipHeaderFieldList As List(Of TooltipHeaderFieldNamePair) _
)
C#
public QuantileCustomRenderSettings(
	RenderSettings renderSettings,
	Color[] quantileColors,
	double[] quantiles,
	string shapeFieldName,
	List<TooltipHeaderFieldNamePair> tooltipHeaderFieldList
)
Visual C++
public:
QuantileCustomRenderSettings(
	RenderSettings^ renderSettings, 
	array<Color>^ quantileColors, 
	array<double>^ quantiles, 
	String^ shapeFieldName, 
	List<TooltipHeaderFieldNamePair^>^ tooltipHeaderFieldList
)
JavaScript
EGIS.Web.Controls.QuantileCustomRenderSettings = function(renderSettings, quantileColors, quantiles, shapeFieldName, tooltipHeaderFieldList);

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}
shapeFieldName
Type: System..::..String
The name of the shapefile dbf field used to determine what color to render a shape
tooltipHeaderFieldList
Type: System.Collections.Generic..::..List<(Of <(<'TooltipHeaderFieldNamePair>)>)>
List of TooltipHeaderFieldNamePair objects used to create a custom tooltip

See Also