dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Renderers
UniqueValueRendererLegendOptions Class
An object providing options for displaying the renderer in the Legend.
ArcGIS Maps SDK for JavaScript
public class UniqueValueRendererLegendOptions : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 UniqueValueRendererLegendOptions
Constructors
UniqueValueRendererLegendOptions() Constructor
Parameterless constructor for use as a Razor Component.
public UniqueValueRendererLegendOptions();
UniqueValueRendererLegendOptions(string) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public UniqueValueRendererLegendOptions(string? title=null);
Parameters
title
System.String
Describes the variable driving the visualization.
ArcGIS Maps SDK for JavaScript
Properties
UniqueValueRendererLegendOptions.Title Property
The title to display in the legend for the renderer
public string? Title { get; set; }
Property Value
Methods
UniqueValueRendererLegendOptions.GetTitle() Method
Asynchronously retrieve the current value of the Title property.
public System.Threading.Tasks.Task<string?> GetTitle();
Returns
System.Threading.Tasks.Task<System.String>
UniqueValueRendererLegendOptions.SetTitle(string) Method
Asynchronously set the value of the Title property after render.
public System.Threading.Tasks.Task SetTitle(string? value);
Parameters
value
System.String
The value to set.