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, _
tooltipHeaderFieldList As List(Of TooltipHeaderFieldNamePair) _
) |
C# |
---|
public QuantileCustomRenderSettings(
RenderSettings renderSettings,
Color[] quantileColors,
double[] quantiles,
string quantileKey,
DataTable importData,
string shapeJoinKey,
string importJoinKey,
List<TooltipHeaderFieldNamePair> tooltipHeaderFieldList
) |
Visual C++ |
---|
public:
QuantileCustomRenderSettings(
RenderSettings^ renderSettings,
array<Color>^ quantileColors,
array<double>^ quantiles,
String^ quantileKey,
DataTable^ importData,
String^ shapeJoinKey,
String^ importJoinKey,
List<TooltipHeaderFieldNamePair^>^ tooltipHeaderFieldList
) |
JavaScript |
---|
EGIS.Web.Controls.QuantileCustomRenderSettings = function(renderSettings, quantileColors, quantiles, quantileKey, importData, shapeJoinKey, importJoinKey, 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}
- 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
- tooltipHeaderFieldList
- Type: System.Collections.Generic..::..List<(Of <(<'TooltipHeaderFieldNamePair>)>)>
List of TooltipHeaderFieldNamePair objects used to create a custom tooltip
See Also