Constructs a new QuantileCustomRenderSettings instance
Namespace:
EGIS.Web.Controls
Assembly:
EGIS.Web.Controls (in EGIS.Web.Controls.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
renderSettings As RenderSettings, _
quantileColors As Color(), _
quantiles As Double(), _
shapeFieldName As String _
) |
| Visual C++ |
|---|
public:
QuantileCustomRenderSettings(
RenderSettings^ renderSettings,
array<Color>^ quantileColors,
array<double>^ quantiles,
String^ shapeFieldName
) |
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
See Also