Conditional formatting is used to format a cell or a range of cells based on specified criteria. In one report, you can create as many conditions as you need and each condition can apply different formatting rules. Multiple conditional formatting rules for the report will be applied one by one in the order that they were created.
Conditional formatting rules may be added to all pivot table cells, to the cell specifying row and column indexes, to totals and subtotals only, to regular cells only, or to the cells of the selected measure, hierarchy, and hierarchy's member.
Conditions can be defined within a report. When you save the report all the conditional formatting will also be saved and loaded when the report is retrieved.
To see different live examples on how to use conditional formatting, visit our Examples page.
More details about conditional formatting are available in the following sections:
With conditional formatting you can define the following: a logical expression for the rules of the condition (the formula
property); style objects for cells that pass the condition (the format
property); and the cells to which the condition is applied. Style objects are composed of font size, font color, font family, and background color.
See the full list of available ConditionalFormatObject properties.
You need to specify the formula
and format
properties to apply the conditional rule to all values. You can define a format the following way:
{ dataSource: { filename: "https://cdn.flexmonster.com/data/data.csv" }, conditions: [ { formula: "#value < 400000", format: { backgroundColor: "#FFFFFF", color: "#0000FF", fontFamily: "Arial", fontSize: "12px" } } ], }
Open the example on JSFiddle.
A formatting rule can be applied to a specific measure, hierarchy, hierarchy member, column, or row. Additionally, you can apply it only to regular cells or to totals and subtotals. For example, if you are visualizing financial data, you may want to apply conditional formatting only to regular cells with prices. See an example below:
{ dataSource: { filename: "https://cdn.flexmonster.com/data/data.csv" }, conditions: [ { formula: "#value < 10000", measure: "Quantity", aggregation: "sum", format: { backgroundColor: "#7CB342", color: "#FFFFFF" } } ], }
Open the example on JSFiddle.
Go to Format > Conditional formatting in the Toolbar to change/define conditional formatting rules for values at runtime.
This conditional formatting will be applied to the specified values and will be saved within the report.
The API call addCondition() is used to add or change a conditional formatting rule at runtime. You can change conditions along with other report parts using the API call setReport().