layout: default title: SizeStop parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Layers
SizeStop Class
Defines a size stop used for creating a continuous size visualization in a size visual variable.
ArcGIS Maps SDK for JavaScript
public class SizeStop : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 SizeStop
Constructors
SizeStop() Constructor
Parameterless constructor for use as a razor component
public SizeStop();
SizeStop(double, Dimension, string) Constructor
Constructs a new SizeStop in code with parameters
public SizeStop(double value, dymaptic.GeoBlazor.Core.Objects.Dimension? size=null, string? label=null);
Parameters
value
System.Double
Specifies the data value to map to the given size.
size
Dimension
The size value in points (between 0 and 90) used to render features with the given value. This value may also be autocast from a string in points or pixels.
label
System.String
A string value used to label the stop in the Legend.
Properties
SizeStop.Label Property
A string value used to label the stop in the Legend.
public string? Label { get; set; }
Property Value
SizeStop.Size Property
The size value in points (between 0 and 90) used to render features with the given value. This value may also be autocast from a string in points or pixels.
public dymaptic.GeoBlazor.Core.Objects.Dimension? Size { get; set; }
Property Value
SizeStop.Value Property
Specifies the data value to map to the given size.
public System.Nullable<double> Value { get; set; }