Skip to content

ChartLayout

Namespace: Hex1b.Charts

Assembly: Hex1b.dll

Specifies how multi-series data is displayed in a chart.

csharp
public enum ChartLayout

Fields

Grouped

Series bars/columns are placed side-by-side within each category.

Returns: ChartLayout

csharp
Grouped = 3

Simple

Single series — one bar/column per category.

Returns: ChartLayout

csharp
Simple = 0

Stacked

Series segments are stacked end-to-end within each category. Column/bar height reflects the sum of actual values.

Returns: ChartLayout

csharp
Stacked = 1

Stacked100

Series segments are stacked end-to-end, normalized so each category fills 100%. Segment sizes represent proportional share rather than absolute values.

Returns: ChartLayout

csharp
Stacked100 = 2

Released under the MIT License.