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 = {...}
而不是 x.lowerBoundRule.formula = ...
) 。
lowerBoundRule?: Excel.ConditionalDataBarRule;
属性值
注解
negativeFormat
Excel 数据栏中轴左侧所有值的表示形式。
negativeFormat?: Excel.Interfaces.ConditionalDataBarNegativeFormatData;
属性值
注解
positiveFormat
Excel 数据栏中轴右侧所有值的表示形式。
positiveFormat?: Excel.Interfaces.ConditionalDataBarPositiveFormatData;
属性值
注解
showDataBarOnly
upperBoundRule
构成数据栏的上限(以及如何计算,如果适用)的规则。 对象 ConditionalDataBarRule
必须设置为 JSON 对象, (使用 x.upperBoundRule = {...}
而不是 x.upperBoundRule.formula = ...
) 。
upperBoundRule?: Excel.ConditionalDataBarRule;