Table of Contents

Class OdfChartAxisInfo

Namespace
OdfKit.Chart
Assembly
OdfKit.dll

Represents high-level summary information for a chart axis. 表示圖表座標軸的高階摘要資訊。

public sealed class OdfChartAxisInfo
Inheritance
OdfChartAxisInfo
Inherited Members

Constructors

OdfChartAxisInfo(string, string?, bool?, bool?, double?, double?, bool?, bool, bool, string?)

Represents high-level summary information for a chart axis. 表示圖表座標軸的高階摘要資訊。

public OdfChartAxisInfo(string dimension, string? title, bool? logarithmic, bool? reverseDirection, double? minimum, double? maximum, bool? displayLabels, bool hasMajorGrid, bool hasMinorGrid, string? styleName)

Parameters

dimension string

The axis dimension (e.g. x, y). / 座標軸維度(例如 xy)。

title string

The axis title. / 座標軸標題。

logarithmic bool?

Whether the scale is logarithmic. / 是否為對數刻度。

reverseDirection bool?

Whether the direction is reversed. / 是否反向顯示。

minimum double?

The minimum scale value. / 刻度最小值。

maximum double?

The maximum scale value. / 刻度最大值。

displayLabels bool?

Whether scale labels are displayed. / 是否顯示刻度標籤。

hasMajorGrid bool

Whether the major grid line is displayed. / 是否顯示主網格線。

hasMinorGrid bool

Whether the minor grid line is displayed. / 是否顯示次網格線。

styleName string

The style name. / 樣式名稱。

Properties

Dimension

Gets the axis dimension. 取得座標軸維度。

public string Dimension { get; }

Property Value

string

DisplayLabels

Gets whether scale labels are displayed. 取得是否顯示刻度標籤。

public bool? DisplayLabels { get; }

Property Value

bool?

HasMajorGrid

Gets whether the major grid line is displayed. 取得是否顯示主網格線。

public bool HasMajorGrid { get; }

Property Value

bool

HasMinorGrid

Gets whether the minor grid line is displayed. 取得是否顯示次網格線。

public bool HasMinorGrid { get; }

Property Value

bool

Logarithmic

Gets whether the scale is logarithmic. 取得是否為對數刻度。

public bool? Logarithmic { get; }

Property Value

bool?

Maximum

Gets the maximum scale value. 取得刻度最大值。

public double? Maximum { get; }

Property Value

double?

Minimum

Gets the minimum scale value. 取得刻度最小值。

public double? Minimum { get; }

Property Value

double?

ReverseDirection

Gets whether the direction is reversed. 取得是否反向顯示。

public bool? ReverseDirection { get; }

Property Value

bool?

StyleName

Gets the style name. 取得樣式名稱。

public string? StyleName { get; }

Property Value

string

Title

Gets the axis title. 取得座標軸標題。

public string? Title { get; }

Property Value

string