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

ChartPoints

Namespace ChartForgeX.Core

Creates common ChartPoint sequences for chart series.

Inheritance

  • Object
  • ChartPoints

Methods

FromValues 2 overloads
FromValues(System.Double[] values) #

Creates one-based x/y points from y values.

Parameters

values System.Double[] required
The y values.

Returns

Chart points with x values starting at one.

FromValues(System.Collections.Generic.IEnumerable{System.Double} values) #

Creates one-based x/y points from y values.

Parameters

values System.Collections.Generic.IEnumerable{System.Double} required
The y values.

Returns

Chart points with x values starting at one.

FromXY(System.Collections.Generic.IEnumerable{System.Double} x, System.Collections.Generic.IEnumerable{System.Double} y) #

Creates x/y points from matching x and y value sequences.

Parameters

x System.Collections.Generic.IEnumerable{System.Double} required
The x values.
y System.Collections.Generic.IEnumerable{System.Double} required
The y values.

Returns

Chart points using the supplied x and y values.