Project

ChartForgeX

Render deterministic charts, dashboards, topology, hierarchy, and report visuals directly from .NET.

Stars 45
Forks 2
NuGet downloads 48,107
Release ChartForgeX-v1.7.0
Language: HTML Updated: 2026-09-02

API Reference

Class

ChartMapPoint

Namespace ChartForgeX.Core

Represents one labeled longitude/latitude point in a map chart.

Inheritance

  • Object
  • ChartMapPoint

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Constructors

ChartMapPoint 2 overloads
ChartMapPoint(System.String label, System.Double longitude, System.Double latitude, System.Nullable{ChartForgeX.Primitives.ChartColor} color) #

Initializes a new instance of the ChartMapPoint struct.

Parameters

label System.String required
The point label.
longitude System.Double required
The longitude in degrees, from -180 to 180.
latitude System.Double required
The latitude in degrees, from -90 to 90.
color System.Nullable{ChartForgeX.Primitives.ChartColor} required
An optional point color.
ChartMapPoint(System.String label, System.Double longitude, System.Double latitude, System.Double value, System.Nullable{ChartForgeX.Primitives.ChartColor} color) #

Initializes a new instance of the ChartMapPoint struct with a numeric value.

Parameters

label System.String required
The point label.
longitude System.Double required
The longitude in degrees, from -180 to 180.
latitude System.Double required
The latitude in degrees, from -90 to 90.
value System.Double required
The non-negative value associated with the point.
color System.Nullable{ChartForgeX.Primitives.ChartColor} required
An optional point color.

Fields

Label #

Gets the point label.

Longitude #

Gets the longitude in degrees.

Latitude #

Gets the latitude in degrees.

Value #

Gets an optional numeric value used by renderers that support weighted map points.

Color #

Gets the optional point color.