dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
AuthoringInfoStatistics Class
Only for renderers of type univariate-color-size
with an above-and-below
univariateTheme.
ArcGIS Maps SDK for JavaScript
public class AuthoringInfoStatistics : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 AuthoringInfoStatistics
Constructors
AuthoringInfoStatistics() Constructor
Parameterless constructor for use as a Razor Component.
public AuthoringInfoStatistics();
AuthoringInfoStatistics(double, double) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public AuthoringInfoStatistics(double max, double min);
Parameters
max
System.Double
The maximum data value of the attribute represented by the renderer.
ArcGIS Maps SDK for JavaScript
min
System.Double
The minimum data value of the attribute represented by the renderer.
ArcGIS Maps SDK for JavaScript
Properties
AuthoringInfoStatistics.Max Property
The maximum data value of the attribute represented by the renderer.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> Max { get; set; }
Property Value
System.Nullable<System.Double>
AuthoringInfoStatistics.Min Property
The minimum data value of the attribute represented by the renderer.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> Min { get; set; }
Property Value
System.Nullable<System.Double>
Methods
AuthoringInfoStatistics.GetMax() Method
Asynchronously retrieve the current value of the Max property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetMax();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
AuthoringInfoStatistics.GetMin() Method
Asynchronously retrieve the current value of the Min property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetMin();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
AuthoringInfoStatistics.SetMax(Nullable) Method
Asynchronously set the value of the Max property after render.
public System.Threading.Tasks.Task SetMax(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.
Returns
AuthoringInfoStatistics.SetMin(Nullable) Method
Asynchronously set the value of the Min property after render.
public System.Threading.Tasks.Task SetMin(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.