ExcelScript.ConditionalDataBarRule interface
Stellt einen Regeltyp für einen Datenbalken dar.
Hinweise
Beispiele
/**
* This script creates data bar conditional formatting on the selected range.
* The scale of the data bar goes from 0 to 1000.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the selected range.
const selected = workbook.getSelectedRange();
// Create new conditional formatting on the range.
const format = selected.addConditionalFormat(ExcelScript.ConditionalFormatType.dataBar);
const dataBarFormat: ExcelScript.DataBarConditionalFormat = format.getDataBar();
// Set the lower bound of the data bar formatting to be 0.
const lowerBound: ExcelScript.ConditionalDataBarRule = {
type: ExcelScript.ConditionalFormatRuleType.number,
formula: "0"
};
dataBarFormat.setLowerBoundRule(lowerBound);
// Set the upper bound of the data bar formatting to be 1000.
const upperBound: ExcelScript.ConditionalDataBarRule = {
type: ExcelScript.ConditionalFormatRuleType.number,
formula: "1000"
};
dataBarFormat.setUpperBoundRule(upperBound);
}
Eigenschaften
formula | Die Formel, falls erforderlich, für die die Datenbalkenregel ausgewertet werden soll. |
type | Der Regeltyp für die Datenleiste. |
Details zur Eigenschaft
formula
Die Formel, falls erforderlich, für die die Datenbalkenregel ausgewertet werden soll.
formula?: string;
Eigenschaftswert
string
type
Der Regeltyp für die Datenleiste.
type: ConditionalFormatRuleType;
Eigenschaftswert
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Scripts