You can use a data bar rule in Spread Windows Forms to make it easier to see differences in the range of data. The data bar rule uses a bar that is displayed as the background for each cell. The length of the bar corresponds to the size of the data relative to the other data in the worksheet. The longer the bar is, the greater the value in the cell. You can specify the value type and the value to compare in the conditional format for the data bar rule.
Value Type
Description
Percent
The minimum value in the range of cells that the conditional formatting rule applies to plus x percent of the difference between the maximum and minimum values in the range of cells that the conditional formatting rule applies to. For example, if the minimum and maximum values in the range are 1 and 10 respectively, and _x_ is 10, then the value is 1.9.
Highest Value
The maximum value in the range of cells that the conditional formatting rule applies to.
Lowest Value
The minimum value in the range of cells that the conditional formatting rule applies to.
Formula
The result of the formula determines the minimum or maximum value of the cell range that the rule applies to. If the result is not numeric, it is treated as zero.
Percentile
The result of the function percentile applied to the range with x.
Automatic
The smaller or larger or the minimum or maximum value in the range of cells that the conditional format applies to.
Number
Number, date, or time value in the range of cells that the conditional formatting rule applies to.
Valid percentiles are from 0 (zero) to 100. A percentile cannot be used if the range of cells contains more than 8,191 data points. Use a percentile when you want to visualize a group of high values (such as the top 20th percentile) in one data bar and low values (such as the bottom 20th percentile) in another data bar. This is useful if you have extreme values that might skew the visualization of your data. Valid percent values are from 0 (zero) to 100. Percent values should not use a percent sign. Use a percentage when you want to visualize all values proportionally because the distribution of values is proportional. Start formulas with an equal sign (=). Invalid formulas result in no formatting applied. The minimum and maximum types can be different. The Maximum property should not be set to a ConditionalFormattingValue value such as ConditionalFormattingValueType.Min or ConditionalFormattingValueType.AutoMin. An exception will occur in this case. The Minimum property should not be set to a ConditionalFormattingValue value such as ConditionalFormattingValueType.Max or ConditionalFormattingValueType.AutoMax. An exception will occur in this case. You can also specify borders, colors, and an axis. This example code creates a data bar rule and uses the SetConditionalFormatting method to apply the rule. Data Bar with Values
This example sets border and fill colors for negative values. Negative Values in Data Bar