dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
ChartMediaInfoValueSeries Class
The ChartMediaInfoValueSeries
class is a read-only support class that represents information specific
to how data should be plotted in a chart.
ArcGIS Maps SDK for JavaScript
public class ChartMediaInfoValueSeries : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 ChartMediaInfoValueSeries
Constructors
ChartMediaInfoValueSeries() Constructor
Parameterless constructor for use as a Razor Component.
public ChartMediaInfoValueSeries();
ChartMediaInfoValueSeries(string, string, Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public ChartMediaInfoValueSeries(string? fieldName=null, string? tooltip=null, System.Nullable<double> value=null);
Parameters
fieldName
System.String
String value indicating the field’s name for a series.
ArcGIS Maps SDK for JavaScript
tooltip
System.String
String value indicating the tooltip for a series.
ArcGIS Maps SDK for JavaScript
value
System.Nullable<System.Double>
Numerical value for the chart series.
ArcGIS Maps SDK for JavaScript
Properties
ChartMediaInfoValueSeries.Color Property
The Color representing the field for a series.
ArcGIS Maps SDK for JavaScript
public dymaptic.GeoBlazor.Core.Model.MapColor? Color { get; set; }
Property Value
ChartMediaInfoValueSeries.FieldName Property
String value indicating the field’s name for a series.
public string? FieldName { get; set; }
Property Value
ChartMediaInfoValueSeries.Tooltip Property
String value indicating the tooltip for a series.
public string? Tooltip { get; set; }
Property Value
ChartMediaInfoValueSeries.Value Property
Numerical value for the chart series.
public System.Nullable<double> Value { get; set; }
Property Value
System.Nullable<System.Double>
Methods
ChartMediaInfoValueSeries.GetColor() Method
Asynchronously retrieve the current value of the Color property.
public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Model.MapColor?> GetColor();
Returns
System.Threading.Tasks.Task<MapColor>
ChartMediaInfoValueSeries.GetFieldName() Method
Asynchronously retrieve the current value of the FieldName property.
public System.Threading.Tasks.Task<string?> GetFieldName();
Returns
System.Threading.Tasks.Task<System.String>
ChartMediaInfoValueSeries.GetTooltip() Method
Asynchronously retrieve the current value of the Tooltip property.
public System.Threading.Tasks.Task<string?> GetTooltip();
Returns
System.Threading.Tasks.Task<System.String>
ChartMediaInfoValueSeries.GetValue() Method
Asynchronously retrieve the current value of the Value property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetValue();