Excel.Interfaces.DataBarConditionalFormatUpdateData interface
dataBarConditionalFormat.set({ ... })
で使用するために、DataBarConditionalFormat オブジェクト上のデータを更新するためのインターフェイス。
プロパティ
| axis |
軸の線の色を表す HTML 色コード(例: "FFA500")、または名前付き HTML カラー (例: "オレンジ") として #RRGGBB。 軸が存在しない場合、または設定されていない場合、値は "" (空の文字列) です。 |
| axis |
Excel データ バーの軸の決定方法を表します。 |
| bar |
データ バー グラフィックの基になる方向を指定します。 |
| lower |
データ バーの下限 (および該当する場合はその計算方法) を構成するルール。
|
| negative |
Excel データ バーの軸の左側にあるすべての値を表します。 |
| positive |
Excel データ バーの軸の右側にあるすべての値を表します。 |
| show |
|
| upper |
データ バーの上限値 (および該当する場合はその計算方法) を構成するルール。
|
プロパティの詳細
axisColor
軸の線の色を表す HTML 色コード(例: "FFA500")、または名前付き HTML カラー (例: "オレンジ") として #RRGGBB。 軸が存在しない場合、または設定されていない場合、値は "" (空の文字列) です。
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.ConditionalDataBarNegativeFormatUpdateData;
プロパティ値
注釈
positiveFormat
Excel データ バーの軸の右側にあるすべての値を表します。
positiveFormat?: Excel.Interfaces.ConditionalDataBarPositiveFormatUpdateData;
プロパティ値
注釈
showDataBarOnly
true
場合は、データ バーが適用されているセルから値を非表示にします。
showDataBarOnly?: boolean;
プロパティ値
boolean
注釈
upperBoundRule
データ バーの上限値 (および該当する場合はその計算方法) を構成するルール。
ConditionalDataBarRule オブジェクトは JSON オブジェクトとして設定する必要があります (x.upperBoundRule.formula = ...ではなくx.upperBoundRule = {...}を使用します)。
upperBoundRule?: Excel.ConditionalDataBarRule;