Excel.Interfaces.DataBarConditionalFormatUpdateData interface
An interface for updating data on the DataBarConditionalFormat
object, for use in dataBarConditionalFormat.set({ ... })
.
Properties
axis |
HTML color code representing the color of the Axis line, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange"). Value is "" (an empty string) if no axis is present or set. |
axis |
Representation of how the axis is determined for an Excel data bar. |
bar |
Specifies the direction that the data bar graphic should be based on. |
lower |
The rule for what constitutes the lower bound (and how to calculate it, if applicable) for a data bar. The |
negative |
Representation of all values to the left of the axis in an Excel data bar. |
positive |
Representation of all values to the right of the axis in an Excel data bar. |
show |
If |
upper |
The rule for what constitutes the upper bound (and how to calculate it, if applicable) for a data bar. The |
Property Details
axisColor
HTML color code representing the color of the Axis line, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange"). Value is "" (an empty string) if no axis is present or set.
axisColor?: string;
Property Value
string
Remarks
axisFormat
Representation of how the axis is determined for an Excel data bar.
axisFormat?: Excel.ConditionalDataBarAxisFormat | "Automatic" | "None" | "CellMidPoint";
Property Value
Excel.ConditionalDataBarAxisFormat | "Automatic" | "None" | "CellMidPoint"
Remarks
barDirection
Specifies the direction that the data bar graphic should be based on.
barDirection?: Excel.ConditionalDataBarDirection | "Context" | "LeftToRight" | "RightToLeft";
Property Value
Excel.ConditionalDataBarDirection | "Context" | "LeftToRight" | "RightToLeft"
Remarks
lowerBoundRule
The rule for what constitutes the lower bound (and how to calculate it, if applicable) for a data bar. The ConditionalDataBarRule
object must be set as a JSON object (use x.lowerBoundRule = {...}
instead of x.lowerBoundRule.formula = ...
).
lowerBoundRule?: Excel.ConditionalDataBarRule;
Property Value
Remarks
negativeFormat
Representation of all values to the left of the axis in an Excel data bar.
negativeFormat?: Excel.Interfaces.ConditionalDataBarNegativeFormatUpdateData;
Property Value
Remarks
positiveFormat
Representation of all values to the right of the axis in an Excel data bar.
positiveFormat?: Excel.Interfaces.ConditionalDataBarPositiveFormatUpdateData;
Property Value
Remarks
showDataBarOnly
If true
, hides the values from the cells where the data bar is applied.
showDataBarOnly?: boolean;
Property Value
boolean
Remarks
upperBoundRule
The rule for what constitutes the upper bound (and how to calculate it, if applicable) for a data bar. The ConditionalDataBarRule
object must be set as a JSON object (use x.upperBoundRule = {...}
instead of x.upperBoundRule.formula = ...
).
upperBoundRule?: Excel.ConditionalDataBarRule;
Property Value
Remarks
Office Add-ins