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

ChartCandlestick

Namespace ChartForgeX.Core

Represents one open, high, low, and close value.

Inheritance

  • Object
  • ChartCandlestick

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

ChartCandlestick 2 overloads
ChartCandlestick(System.Double x, System.Double open, System.Double high, System.Double low, System.Double close) #

Initializes a new instance of the ChartCandlestick struct.

Parameters

x System.Double required
The horizontal coordinate.
open System.Double required
The opening value.
high System.Double required
The highest value.
low System.Double required
The lowest value.
close System.Double required
The closing value.
ChartCandlestick(System.DateTime x, System.Double open, System.Double high, System.Double low, System.Double close) #

Initializes a new instance of the ChartCandlestick struct from a date/time x value.

Parameters

x System.DateTime required
The date/time x value.
open System.Double required
The opening value.
high System.Double required
The highest value.
low System.Double required
The lowest value.
close System.Double required
The closing value.

Fields

X #

Gets the horizontal coordinate.

Open #

Gets the opening value.

High #

Gets the highest value.

Low #

Gets the lowest value.

Close #

Gets the closing value.