Class OdfChartAxisInfo
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
dimensionstringThe axis dimension (e.g.
x,y). / 座標軸維度(例如x、y)。titlestringThe axis title. / 座標軸標題。
logarithmicbool?Whether the scale is logarithmic. / 是否為對數刻度。
reverseDirectionbool?Whether the direction is reversed. / 是否反向顯示。
minimumdouble?The minimum scale value. / 刻度最小值。
maximumdouble?The maximum scale value. / 刻度最大值。
displayLabelsbool?Whether scale labels are displayed. / 是否顯示刻度標籤。
hasMajorGridboolWhether the major grid line is displayed. / 是否顯示主網格線。
hasMinorGridboolWhether the minor grid line is displayed. / 是否顯示次網格線。
styleNamestringThe style name. / 樣式名稱。
Properties
Dimension
Gets the axis dimension. 取得座標軸維度。
public string Dimension { get; }
Property Value
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
HasMinorGrid
Gets whether the minor grid line is displayed. 取得是否顯示次網格線。
public bool HasMinorGrid { get; }
Property Value
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
Minimum
Gets the minimum scale value. 取得刻度最小值。
public double? Minimum { get; }
Property Value
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
Title
Gets the axis title. 取得座標軸標題。
public string? Title { get; }