Excel.Interfaces.DataBarConditionalFormatData interface
dataBarConditionalFormat.toJSON()
の呼び出しによって返されるデータを記述するインターフェイス。
プロパティ
| axis |
軸線の色を表す HTML カラー コード。形式は #RRGGBB (例: "FFA500")、または名前付き HTML 色 (例: "オレンジ") です。 軸が存在しない場合、または軸が設定されていない場合、値は "" (空の文字列) です。 |
| axis |
Excel データ バーの軸を決定する方法の表記。 |
| bar |
データ バー グラフィックの基準となる方向を指定します。 |
| lower |
データ バーの下限 (および該当する場合はその計算方法) を構成するルール。
|
| negative |
Excel データ バーの軸の左側にあるすべての値の表現。 |
| positive |
Excel データ バーの軸の右側にあるすべての値の表現。 |
| show |
|
| upper |
データ バーの上限値 (および該当する場合はその計算方法) を構成するルール。
|
プロパティの詳細
axisColor
軸線の色を表す HTML カラー コード。形式は #RRGGBB (例: "FFA500")、または名前付き HTML 色 (例: "オレンジ") です。 軸が存在しない場合、または軸が設定されていない場合、値は "" (空の文字列) です。
axisColor?: string;
プロパティ値
string
注釈
axisFormat
Excel データ バーの軸を決定する方法の表記。
axisFormat?: Excel.ConditionalDataBarAxisFormat | "Automatic" | "None" | "CellMidPoint";
プロパティ値
Excel.ConditionalDataBarAxisFormat | "Automatic" | "None" | "CellMidPoint"
注釈
barDirection
データ バー グラフィックの基準となる方向を指定します。
barDirection?: Excel.ConditionalDataBarDirection | "Context" | "LeftToRight" | "RightToLeft";
プロパティ値
Excel.ConditionalDataBarDirection | "Context" | "LeftToRight" | "RightToLeft"
注釈
lowerBoundRule
データ バーの下限 (および該当する場合はその計算方法) を構成するルール。
ConditionalDataBarRule オブジェクトは、JSON オブジェクトとして設定する必要があります (x.lowerBoundRule.formula = ... ではなく x.lowerBoundRule = {...} を使用)。
lowerBoundRule?: Excel.ConditionalDataBarRule;
プロパティ値
注釈
negativeFormat
Excel データ バーの軸の左側にあるすべての値の表現。
negativeFormat?: Excel.Interfaces.ConditionalDataBarNegativeFormatData;
プロパティ値
注釈
positiveFormat
Excel データ バーの軸の右側にあるすべての値の表現。
positiveFormat?: Excel.Interfaces.ConditionalDataBarPositiveFormatData;
プロパティ値
注釈
showDataBarOnly
true
の場合、データ バーが適用されるセルの値を非表示にします。
showDataBarOnly?: boolean;
プロパティ値
boolean
注釈
upperBoundRule
データ バーの上限値 (および該当する場合はその計算方法) を構成するルール。
ConditionalDataBarRule オブジェクトは、JSON オブジェクトとして設定する必要があります (x.upperBoundRule.formula = ... ではなく x.upperBoundRule = {...} を使用)。
upperBoundRule?: Excel.ConditionalDataBarRule;