layout: default title: ChartMediaInfoValueSeries parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Popups

ChartMediaInfoValueSeries Class

The ChartMediaInfoValueSeries class is a read-only support class that represents information specific to how data
should be plotted in a chart. It helps provide a consistent API for plotting charts used by the Popup widget.
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 building a ChartMediaInfoValueSeries in code.

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.

tooltip System.String

String value indicating the tooltip for a series.

value System.Nullable<System.Double>

Numerical value for the chart series.

Properties

ChartMediaInfoValueSeries.FieldName Property

String value indicating the field’s name for a series.

public string? FieldName { get; set; }

Property Value

System.String

ChartMediaInfoValueSeries.Tooltip Property

String value indicating the tooltip for a series.

public string? Tooltip { get; set; }

Property Value

System.String

ChartMediaInfoValueSeries.Value Property

Numerical value for the chart series.

public System.Nullable<double> Value { get; set; }

Property Value

System.Nullable<System.Double>