Added support for conditional formatting.

Feature request #302
This commit is contained in:
John McNamara 2020-08-30 20:30:46 +01:00
parent f23d2e905e
commit 5d4a571105
58 changed files with 7807 additions and 235 deletions

3
.indent.pro vendored
View File

@ -89,6 +89,9 @@
-T lxw_color_t
-T lxw_comment
-T lxw_comment_options
-T lxw_cond_format_hash_element
-T lxw_cond_format_obj
-T lxw_conditional_format
-T lxw_content_types
-T lxw_core
-T lxw_custom

View File

@ -0,0 +1,400 @@
/*
* An example how to add conditional formatting to an XlsxWriter file.
*
* Conditional formatting allows you to apply a format to a cell or a
* range of cells based on certain criteria.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "xlsxwriter.h"
/* Write some data to the worksheet. */
void write_worksheet_data(lxw_worksheet *worksheet) {
uint8_t data[10][10] = {
{34, 72, 38, 30, 75, 48, 75, 66, 84, 86},
{6, 24, 1, 84, 54, 62, 60, 3, 26, 59},
{28, 79, 97, 13, 85, 93, 93, 22, 5, 14},
{27, 71, 40, 17, 18, 79, 90, 93, 29, 47},
{88, 25, 33, 23, 67, 1, 59, 79, 47, 36},
{24, 100, 20, 88, 29, 33, 38, 54, 54, 88},
{6, 57, 88, 28, 10, 26, 37, 7, 41, 48},
{52, 78, 1, 96, 26, 45, 47, 33, 96, 36},
{60, 54, 81, 66, 81, 90, 80, 93, 12, 55},
{70, 5, 46, 14, 71, 19, 66, 36, 41, 21},
};
int row, col;
for (row = 0; row < 10; row++)
for (col = 0; col < 10; col++)
worksheet_write_number(worksheet, row +2, col +1, data[row][col], NULL);
}
/* Reset the conditional format options back to their initial state. */
void reset_conditional_format(lxw_conditional_format *conditional_format) {
memset(conditional_format, 0, sizeof(lxw_conditional_format));
}
int main() {
lxw_workbook *workbook = workbook_new("conditional_format.xlsx");
lxw_worksheet *worksheet1 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet2 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet3 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet4 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet5 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet6 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet7 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet8 = workbook_add_worksheet(workbook, NULL);
lxw_worksheet *worksheet9 = workbook_add_worksheet(workbook, NULL);
/* Add a format. Light red fill with dark red text. */
lxw_format *format1 = workbook_add_format(workbook);
format_set_bg_color(format1, 0xFFC7CE);
format_set_font_color(format1, 0x9C0006);
/* Add a format. Green fill with dark green text. */
lxw_format *format2 = workbook_add_format(workbook);
format_set_bg_color(format2, 0xC6EFCE);
format_set_font_color(format2, 0x006100);
/* Create a single conditional format object to reuse in the examples. */
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
* Example 1. Conditional formatting based on simple cell based criteria.
*/
write_worksheet_data(worksheet1);
worksheet_write_string(worksheet1,
CELL("A1"),
"Cells with values >= 50 are in light red. "
"Values < 50 are in light green.",
NULL);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN_OR_EQUAL_TO;
conditional_format->value = 50;
conditional_format->format = format1;
worksheet_conditional_format_range(worksheet1, RANGE("B3:K12"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 50;
conditional_format->format = format2;
worksheet_conditional_format_range(worksheet1, RANGE("B3:K12"), conditional_format);
/*
* Example 2. Conditional formatting based on max and min values.
*/
write_worksheet_data(worksheet2);
worksheet_write_string(worksheet2,
CELL("A1"),
"Values between 30 and 70 are in light red. "
"Values outside that range are in light green.",
NULL);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_BETWEEN;
conditional_format->min_value = 30;
conditional_format->max_value = 70;
conditional_format->format = format1;
worksheet_conditional_format_range(worksheet2, RANGE("B3:K12"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_NOT_BETWEEN;
conditional_format->min_value = 30;
conditional_format->max_value = 70;
conditional_format->format = format2;
worksheet_conditional_format_range(worksheet2, RANGE("B3:K12"), conditional_format);
/*
* Example 3. Conditional formatting with duplicate and unique values.
*/
write_worksheet_data(worksheet3);
worksheet_write_string(worksheet3,
CELL("A1"),
"Duplicate values are in light red. "
"Unique values are in light green.",
NULL);
conditional_format->type = LXW_CONDITIONAL_TYPE_DUPLICATE;
conditional_format->format = format1;
worksheet_conditional_format_range(worksheet3, RANGE("B3:K12"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_UNIQUE;
conditional_format->format = format2;
worksheet_conditional_format_range(worksheet3, RANGE("B3:K12"), conditional_format);
/*
* Example 4. Conditional formatting with above and below average values.
*/
write_worksheet_data(worksheet4);
worksheet_write_string(worksheet4,
CELL("A1"),
"Above average values are in light red. "
"Below average values are in light green.",
NULL);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_ABOVE;
conditional_format->format = format1;
worksheet_conditional_format_range(worksheet4, RANGE("B3:K12"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_BELOW;
conditional_format->format = format2;
worksheet_conditional_format_range(worksheet4, RANGE("B3:K12"), conditional_format);
/*
* Example 5. Conditional formatting with top and bottom values.
*/
write_worksheet_data(worksheet5);
worksheet_write_string(worksheet5,
CELL("A1"),
"Top 10 values are in light red. "
"Bottom 10 values are in light green.",
NULL);
conditional_format->type = LXW_CONDITIONAL_TYPE_TOP;
conditional_format->value = 10;
conditional_format->format = format1;
worksheet_conditional_format_range(worksheet5, RANGE("B3:K12"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_BOTTOM;
conditional_format->value = 10;
conditional_format->format = format2;
worksheet_conditional_format_range(worksheet5, RANGE("B3:K12"), conditional_format);
/*
* Example 6. Conditional formatting with multiple ranges.
*/
write_worksheet_data(worksheet6);
worksheet_write_string(worksheet6,
CELL("A1"),
"Cells with values >= 50 are in light red."
"Values < 50 are in light green. Non-contiguous ranges.",
NULL);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN_OR_EQUAL_TO;
conditional_format->value = 50;
conditional_format->format = format1;
conditional_format->multi_range = "B3:K6 B9:K12";
worksheet_conditional_format_range(worksheet6, RANGE("B3:K12"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 50;
conditional_format->format = format2;
conditional_format->multi_range = "B3:K6 B9:K12";
worksheet_conditional_format_range(worksheet6, RANGE("B3:K12"), conditional_format);
/* Reset the options before the next example. */
reset_conditional_format(conditional_format);
/*
* Example 7. Conditional formatting with 2 color scales.
*/
/* Write the worksheet data. */
for (int i = 1; i <= 12; i++) {
worksheet_write_number(worksheet7, i + 1, 1, i, NULL);
worksheet_write_number(worksheet7, i + 1, 3, i, NULL);
worksheet_write_number(worksheet7, i + 1, 6, i, NULL);
worksheet_write_number(worksheet7, i + 1, 8, i, NULL);
}
worksheet_write_string(worksheet7,
CELL("A1"),
"Examples of color scales with default and user colors.",
NULL);
worksheet_write_string(worksheet7, CELL("B2"), "2 Color Scale", NULL);
worksheet_write_string(worksheet7, CELL("D2"), "2 Color Scale + user colors", NULL);
worksheet_write_string(worksheet7, CELL("G2"), "3 Color Scale", NULL);
worksheet_write_string(worksheet7, CELL("I2"), "3 Color Scale + user colors", NULL);
/* 2 color scale with standard colors. */
conditional_format->type = LXW_CONDITIONAL_2_COLOR_SCALE;
worksheet_conditional_format_range(worksheet7, RANGE("B3:B14"), conditional_format);
/* 2 color scale with user defined colors. */
conditional_format->type = LXW_CONDITIONAL_2_COLOR_SCALE;
conditional_format->min_color = 0xFF0000;
conditional_format->max_color = 0x00FF00;
worksheet_conditional_format_range(worksheet7, RANGE("D3:D14"), conditional_format);
/* Reset the colors before the next example. */
reset_conditional_format(conditional_format);
/* 3 color scale with standard colors. */
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
worksheet_conditional_format_range(worksheet7, RANGE("G3:G14"), conditional_format);
/* 3 color scale with user defined colors. */
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
conditional_format->min_color = 0xC5D9F1;
conditional_format->mid_color = 0x8DB4E3;
conditional_format->max_color = 0x538ED5;
worksheet_conditional_format_range(worksheet7, RANGE("I3:I14"), conditional_format);
reset_conditional_format(conditional_format);
/*
* Example 8. Conditional formatting with data bars.
*/
/* Write the worksheet data. */
for (int i = 1; i <= 12; i++) {
worksheet_write_number(worksheet8, i + 1, 1, i, NULL);
worksheet_write_number(worksheet8, i + 1, 3, i, NULL);
worksheet_write_number(worksheet8, i + 1, 5, i, NULL);
worksheet_write_number(worksheet8, i + 1, 7, i, NULL);
worksheet_write_number(worksheet8, i + 1, 9, i, NULL);
}
int data[] = {-1, -2, -3, -2, -1, 0, 1, 2, 3, 2, 1, 0};
for (int i = 1; i <= 12; i++) {
worksheet_write_number(worksheet8, i + 1, 11, data[i -1], NULL);
worksheet_write_number(worksheet8, i + 1, 13, data[i -1], NULL);
}
worksheet_write_string(worksheet8,
CELL("A1"),
"Examples of data bars.",
NULL);
worksheet_write_string(worksheet8, CELL("B2"), "Default data bars", NULL);
worksheet_write_string(worksheet8, CELL("D2"), "Bars only", NULL);
worksheet_write_string(worksheet8, CELL("F2"), "With user color", NULL);
worksheet_write_string(worksheet8, CELL("H2"), "Solid bars", NULL);
worksheet_write_string(worksheet8, CELL("J2"), "Right to left", NULL);
worksheet_write_string(worksheet8, CELL("L2"), "Excel 2010 style", NULL);
worksheet_write_string(worksheet8, CELL("N2"), "Negative same as positive", NULL);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
worksheet_conditional_format_range(worksheet8, RANGE("B3:B14"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_only = LXW_TRUE;
worksheet_conditional_format_range(worksheet8, RANGE("D3:D14"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0x63C384;
worksheet_conditional_format_range(worksheet8, RANGE("F3:F14"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_solid = LXW_TRUE;
worksheet_conditional_format_range(worksheet8, RANGE("H3:H14"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_direction = LXW_CONDITIONAL_BAR_DIRECTION_RIGHT_TO_LEFT;
worksheet_conditional_format_range(worksheet8, RANGE("J3:J14"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
worksheet_conditional_format_range(worksheet8, RANGE("L3:L14"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_negative_color_same = LXW_TRUE;
conditional_format->bar_negative_border_color_same = LXW_TRUE;
worksheet_conditional_format_range(worksheet8, RANGE("N3:N14"), conditional_format);
reset_conditional_format(conditional_format);
/*
* Example 9. Conditional formatting with icon sets.
*/
/* Write the worksheet data. */
for (int i = 1; i <= 3; i++) {
worksheet_write_number(worksheet9, 2, i, i, NULL);
worksheet_write_number(worksheet9, 3, i, i, NULL);
worksheet_write_number(worksheet9, 4, i, i, NULL);
worksheet_write_number(worksheet9, 5, i, i, NULL);
}
for (int i = 1; i <= 4; i++) {
worksheet_write_number(worksheet9, 6, i, i, NULL);
}
for (int i = 1; i <= 5; i++) {
worksheet_write_number(worksheet9, 7, i, i, NULL);
worksheet_write_number(worksheet9, 8, i, i, NULL);
}
worksheet_write_string(worksheet9,
CELL("A1"),
"Examples of conditional formats with icon sets.",
NULL);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_TRAFFIC_LIGHTS;
worksheet_conditional_format_range(worksheet9, RANGE("B3:D3"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_TRAFFIC_LIGHTS;
conditional_format->reverse_icons = LXW_TRUE;
worksheet_conditional_format_range(worksheet9, RANGE("B4:D4"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_TRAFFIC_LIGHTS;
conditional_format->icons_only = LXW_TRUE;
worksheet_conditional_format_range(worksheet9, RANGE("B5:D5"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_ARROWS;
worksheet_conditional_format_range(worksheet9, RANGE("B6:D6"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_4_ARROWS;
worksheet_conditional_format_range(worksheet9, RANGE("B7:E7"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_5_ARROWS;
worksheet_conditional_format_range(worksheet9, RANGE("B8:F8"), conditional_format);
reset_conditional_format(conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_5_RATINGS;
worksheet_conditional_format_range(worksheet9, RANGE("B9:F9"), conditional_format);
reset_conditional_format(conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -202,6 +202,9 @@ enum lxw_custom_property_types {
/* Datetime string length. */
#define LXW_DATETIME_LENGTH sizeof("2016-12-12T23:00:00Z")
/* GUID string length. */
#define LXW_GUID_LENGTH sizeof("{12345678-1234-1234-1234-1234567890AB}")
#define LXW_EPOCH_1900 0
#define LXW_EPOCH_1904 1

View File

@ -219,6 +219,208 @@ enum lxw_comment_display_types {
LXW_COMMENT_DISPLAY_VISIBLE
};
enum lxw_conditional_format_types {
LXW_CONDITIONAL_TYPE_NONE,
LXW_CONDITIONAL_TYPE_CELL,
LXW_CONDITIONAL_TYPE_TEXT,
LXW_CONDITIONAL_TYPE_TIME_PERIOD,
LXW_CONDITIONAL_TYPE_AVERAGE,
LXW_CONDITIONAL_TYPE_DUPLICATE,
LXW_CONDITIONAL_TYPE_UNIQUE,
LXW_CONDITIONAL_TYPE_TOP,
LXW_CONDITIONAL_TYPE_BOTTOM,
LXW_CONDITIONAL_TYPE_BLANKS,
LXW_CONDITIONAL_TYPE_NO_BLANKS,
LXW_CONDITIONAL_TYPE_ERRORS,
LXW_CONDITIONAL_TYPE_NO_ERRORS,
LXW_CONDITIONAL_TYPE_FORMULA,
LXW_CONDITIONAL_2_COLOR_SCALE,
LXW_CONDITIONAL_3_COLOR_SCALE,
LXW_CONDITIONAL_DATA_BAR,
LXW_CONDITIONAL_TYPE_ICON_SETS,
LXW_CONDITIONAL_TYPE_LAST
};
enum lxw_conditional_format_value_types {
LXW_CONDITIONAL_VALUE_TYPE_NUMBER,
LXW_CONDITIONAL_VALUE_TYPE_STRING,
LXW_CONDITIONAL_VALUE_TYPE_RANGE,
LXW_CONDITIONAL_VALUE_TYPE_LAST
};
enum lxw_conditional_format_bar_direction {
LXW_CONDITIONAL_BAR_DIRECTION_CONTEXT,
LXW_CONDITIONAL_BAR_DIRECTION_RIGHT_TO_LEFT,
LXW_CONDITIONAL_BAR_DIRECTION_LEFT_TO_RIGHT
};
enum lxw_conditional_bar_axis_position {
LXW_CONDITIONAL_BAR_AXIS_AUTOMATIC,
LXW_CONDITIONAL_BAR_AXIS_MIDPOINT,
LXW_CONDITIONAL_BAR_AXIS_NONE
};
/** The criteria used in a conditional format. */
enum lxw_conditional_criteria {
LXW_CONDITIONAL_CRITERIA_NONE,
/** Select data between two values. */
LXW_CONDITIONAL_CRITERIA_BETWEEN,
/** Select data that is not between two values. */
LXW_CONDITIONAL_CRITERIA_NOT_BETWEEN,
/** Select data equal to a value. */
LXW_CONDITIONAL_CRITERIA_EQUAL_TO,
/** Select data not equal to a value. */
LXW_CONDITIONAL_CRITERIA_NOT_EQUAL_TO,
/** Select data greater than a value. */
LXW_CONDITIONAL_CRITERIA_GREATER_THAN,
/** Select data less than a value. */
LXW_CONDITIONAL_CRITERIA_LESS_THAN,
/** Select data greater than or equal to a value. */
LXW_CONDITIONAL_CRITERIA_GREATER_THAN_OR_EQUAL_TO,
/** Select data less than or equal to a value. */
LXW_CONDITIONAL_CRITERIA_LESS_THAN_OR_EQUAL_TO,
LXW_CONDITIONAL_CRITERIA_TEXT_CONTAINING,
LXW_CONDITIONAL_CRITERIA_TEXT_NOT_CONTAINING,
LXW_CONDITIONAL_CRITERIA_TEXT_BEGINS_WITH,
LXW_CONDITIONAL_CRITERIA_TEXT_ENDS_WITH,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_YESTERDAY,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_TODAY,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_TOMORROW,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_LAST_7_DAYS,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_LAST_WEEK,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_THIS_WEEK,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_NEXT_WEEK,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_LAST_MONTH,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_THIS_MONTH,
LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_NEXT_MONTH,
LXW_CONDITIONAL_CRITERIA_AVERAGE_ABOVE,
LXW_CONDITIONAL_CRITERIA_AVERAGE_BELOW,
LXW_CONDITIONAL_CRITERIA_AVERAGE_ABOVE_OR_EQUAL,
LXW_CONDITIONAL_CRITERIA_AVERAGE_BELOW_OR_EQUAL,
LXW_CONDITIONAL_CRITERIA_AVERAGE_1_STD_DEV_ABOVE,
LXW_CONDITIONAL_CRITERIA_AVERAGE_1_STD_DEV_BELOW,
LXW_CONDITIONAL_CRITERIA_AVERAGE_2_STD_DEV_ABOVE,
LXW_CONDITIONAL_CRITERIA_AVERAGE_2_STD_DEV_BELOW,
LXW_CONDITIONAL_CRITERIA_AVERAGE_3_STD_DEV_ABOVE,
LXW_CONDITIONAL_CRITERIA_AVERAGE_3_STD_DEV_BELOW,
LXW_CONDITIONAL_CRITERIA_TOP_OR_BOTTOM_PERCENT
};
enum lxw_conditional_format_rule_types {
LXW_CONDITIONAL_RULE_TYPE_NONE,
LXW_CONDITIONAL_RULE_TYPE_MINIMUM,
LXW_CONDITIONAL_RULE_TYPE_NUMBER,
LXW_CONDITIONAL_RULE_TYPE_PERCENT,
LXW_CONDITIONAL_RULE_TYPE_PERCENTILE,
LXW_CONDITIONAL_RULE_TYPE_FORMULA,
LXW_CONDITIONAL_RULE_TYPE_MAXIMUM,
LXW_CONDITIONAL_RULE_TYPE_AUTO_MIN,
LXW_CONDITIONAL_RULE_TYPE_AUTO_MAX
};
enum lxw_conditional_icon_types {
LXW_CONDITIONAL_ICONS_3_ARROWS,
LXW_CONDITIONAL_ICONS_3_FLAGS,
LXW_CONDITIONAL_ICONS_3_TRAFFIC_LIGHTS_RIMMED,
LXW_CONDITIONAL_ICONS_3_SYMBOLS_CIRCLED,
LXW_CONDITIONAL_ICONS_3_ARROWS_GRAY,
LXW_CONDITIONAL_ICONS_3_TRAFFIC_LIGHTS,
LXW_CONDITIONAL_ICONS_3_SIGNS,
LXW_CONDITIONAL_ICONS_3_SYMBOLS,
LXW_CONDITIONAL_ICONS_4_ARROWS,
LXW_CONDITIONAL_ICONS_4_RED_TO_BLACK,
LXW_CONDITIONAL_ICONS_4_TRAFFIC_LIGHTS,
LXW_CONDITIONAL_ICONS_4_ARROWS_GRAY,
LXW_CONDITIONAL_ICONS_4_RATINGS,
LXW_CONDITIONAL_ICONS_5_ARROWS,
LXW_CONDITIONAL_ICONS_5_ARROWS_GRAY,
LXW_CONDITIONAL_ICONS_5_QUARTERS,
LXW_CONDITIONAL_ICONS_5_RATINGS
};
/** Options to control the positioning of worksheet objects such as images
* or charts. See @ref working_with_object_positioning. */
enum lxw_object_position {
@ -313,6 +515,7 @@ enum lxw_image_position {
RB_HEAD(lxw_table_cells, lxw_cell);
RB_HEAD(lxw_drawing_rel_ids, lxw_drawing_rel_id);
RB_HEAD(lxw_vml_drawing_rel_ids, lxw_drawing_rel_id);
RB_HEAD(lxw_cond_format_hash, lxw_cond_format_hash_element);
/* Define a RB_TREE struct manually to add extra members. */
struct lxw_table_rows {
@ -367,9 +570,21 @@ struct lxw_table_rows {
/* Add unused struct to allow adding a semicolon */ \
struct lxw_rb_generate_vml_drawing_rel_ids{int unused;}
#define LXW_RB_GENERATE_COND_FORMAT_HASH(name, type, field, cmp) \
RB_GENERATE_INSERT_COLOR(name, type, field, static) \
RB_GENERATE_REMOVE_COLOR(name, type, field, static) \
RB_GENERATE_INSERT(name, type, field, cmp, static) \
RB_GENERATE_REMOVE(name, type, field, static) \
RB_GENERATE_FIND(name, type, field, cmp, static) \
RB_GENERATE_NEXT(name, type, field, static) \
RB_GENERATE_MINMAX(name, type, field, static) \
/* Add unused struct to allow adding a semicolon */ \
struct lxw_rb_generate_cond_format_hash{int unused;}
STAILQ_HEAD(lxw_merged_ranges, lxw_merged_range);
STAILQ_HEAD(lxw_selections, lxw_selection);
STAILQ_HEAD(lxw_data_validations, lxw_data_val_obj);
STAILQ_HEAD(lxw_cond_format_list, lxw_cond_format_obj);
STAILQ_HEAD(lxw_image_props, lxw_object_properties);
STAILQ_HEAD(lxw_chart_props, lxw_object_properties);
STAILQ_HEAD(lxw_comment_objs, lxw_vml_obj);
@ -663,6 +878,120 @@ typedef struct lxw_data_val_obj {
STAILQ_ENTRY (lxw_data_val_obj) list_pointers;
} lxw_data_val_obj;
/* Public */
typedef struct lxw_conditional_format {
uint8_t type;
uint8_t criteria;
double value;
char *value_string;
double min_value;
char *min_value_string;
uint8_t min_value_type;
uint8_t min_rule_type;
lxw_color_t min_color;
double mid_value;
char *mid_value_string;
uint8_t mid_value_type;
uint8_t mid_rule_type;
lxw_color_t mid_color;
double max_value;
char *max_value_string;
uint8_t max_value_type;
uint8_t max_rule_type;
lxw_color_t max_color;
uint8_t data_bar_2010;
uint8_t bar_only;
uint8_t bar_solid;
uint8_t bar_negative_color_same;
uint8_t bar_negative_border_color_same;
uint8_t bar_no_border;
uint8_t bar_direction;
uint8_t bar_axis_position;
lxw_color_t bar_color;
lxw_color_t bar_negative_color;
lxw_color_t bar_border_color;
lxw_color_t bar_negative_border_color;
lxw_color_t bar_axis_color;
uint8_t icon_style;
uint8_t reverse_icons;
uint8_t icons_only;
uint8_t stop_if_true;
lxw_format *format;
char *multi_range;
} lxw_conditional_format;
/* Internal */
typedef struct lxw_cond_format_obj {
uint8_t type;
uint8_t criteria;
double min_value;
char *min_value_string;
uint8_t min_rule_type;
lxw_color_t min_color;
double mid_value;
char *mid_value_string;
uint8_t mid_value_type;
uint8_t mid_rule_type;
lxw_color_t mid_color;
double max_value;
char *max_value_string;
uint8_t max_value_type;
uint8_t max_rule_type;
lxw_color_t max_color;
uint8_t data_bar_2010;
uint8_t auto_min;
uint8_t auto_max;
uint8_t bar_only;
uint8_t bar_solid;
uint8_t bar_negative_color_same;
uint8_t bar_negative_border_color_same;
uint8_t bar_no_border;
uint8_t bar_direction;
uint8_t bar_axis_position;
lxw_color_t bar_color;
lxw_color_t bar_negative_color;
lxw_color_t bar_border_color;
lxw_color_t bar_negative_border_color;
lxw_color_t bar_axis_color;
uint8_t icon_style;
uint8_t reverse_icons;
uint8_t icons_only;
uint8_t stop_if_true;
uint8_t has_max;
char *type_string;
char *guid;
int32_t dxf_index;
uint32_t dxf_priority;
char first_cell[LXW_MAX_CELL_NAME_LENGTH];
char sqref[LXW_MAX_ATTRIBUTE_LENGTH];
STAILQ_ENTRY (lxw_cond_format_obj) list_pointers;
} lxw_cond_format_obj;
typedef struct lxw_cond_format_hash_element {
char sqref[LXW_MAX_ATTRIBUTE_LENGTH];
struct lxw_cond_format_list *cond_formats;
RB_ENTRY (lxw_cond_format_hash_element) tree_pointers;
} lxw_cond_format_hash_element;
/**
* @brief Options for inserted images.
*
@ -1019,6 +1348,7 @@ typedef struct lxw_worksheet {
struct lxw_merged_ranges *merged_ranges;
struct lxw_selections *selections;
struct lxw_data_validations *data_validations;
struct lxw_cond_format_hash *conditional_formats;
struct lxw_image_props *image_props;
struct lxw_chart_props *chart_data;
struct lxw_drawing_rel_ids *drawing_rel_ids;
@ -1150,7 +1480,9 @@ typedef struct lxw_worksheet {
char *vml_header_id_str;
uint32_t vml_shape_id;
uint32_t vml_header_id;
uint32_t dxf_priority;
uint8_t comment_display_default;
uint32_t data_bar_2010_index;
uint8_t has_ignore_errors;
char *ignore_number_stored_as_text;
@ -1163,6 +1495,8 @@ typedef struct lxw_worksheet {
char *ignore_calculated_column;
char *ignore_two_digit_text_year;
uint16_t excel_version;
lxw_object_properties **header_footer_objs[LXW_HEADER_FOOTER_OBJS_MAX];
lxw_object_properties *header_left_object_props;
lxw_object_properties *header_center_object_props;
@ -1242,6 +1576,8 @@ typedef struct lxw_drawing_rel_id {
RB_ENTRY (lxw_drawing_rel_id) tree_pointers;
} lxw_drawing_rel_id;
/* *INDENT-OFF* */
#ifdef __cplusplus
extern "C" {
@ -2512,9 +2848,6 @@ lxw_error worksheet_merge_range(lxw_worksheet *worksheet, lxw_row_t first_row,
lxw_col_t last_col, const char *string,
lxw_format *format);
lxw_error worksheet_conditional_tmp(lxw_worksheet *self, lxw_row_t row,
lxw_col_t col, lxw_format *format);
/**
* @brief Set the autofilter area in the worksheet.
*
@ -2632,6 +2965,20 @@ lxw_error worksheet_data_validation_range(lxw_worksheet *worksheet,
lxw_col_t last_col,
lxw_data_validation *validation);
lxw_error worksheet_conditional_format_cell(lxw_worksheet *worksheet,
lxw_row_t row,
lxw_col_t col,
lxw_conditional_format
*conditional_format);
lxw_error worksheet_conditional_format_range(lxw_worksheet *worksheet,
lxw_row_t first_row,
lxw_col_t first_col,
lxw_row_t last_row,
lxw_col_t last_col,
lxw_conditional_format
*conditional_format);
/**
* @brief Make a worksheet the active, i.e., visible worksheet.
*

File diff suppressed because it is too large Load Diff

View File

@ -25,15 +25,14 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/* worksheet_conditional_formatting(worksheet, "A1", */
/* : */
/* 'type': "cell", */
/* 'format': format, */
/* 'criteria': "greater than", */
/* 'value': 5 */
/* ); */
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 5;
conditional_format->format = format;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -19,17 +19,14 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format,
'criteria': "<",
'value': 5
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 5;
conditional_format->format = NULL;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -29,28 +29,21 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format1);
worksheet_conditional_tmp(worksheet, CELL("A1"), format2);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_BETWEEN;
conditional_format->min_value = 2;
conditional_format->max_value = 6;
conditional_format->format = format1;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
/*
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format1,
'criteria': "between",
'minimum': 2,
'maximum': 6,
);
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format2,
'criteria': "greater than",
'value': 1,
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 1;
conditional_format->format = format2;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -29,26 +29,20 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format1);
worksheet_conditional_tmp(worksheet, CELL("A1"), format2);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format1,
'criteria': ">",
'value': 2,
);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 2;
conditional_format->format = format1;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
worksheet_conditional_formatting(worksheet, "A2",
:
'type': "cell",
'format': format2,
'criteria': "<",
'value': 8,
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 8;
conditional_format->format = format2;
worksheet_conditional_format_cell(worksheet, CELL("A2"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -22,17 +22,14 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format1,
'criteria': "==",
'value': 7,
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_EQUAL_TO;
conditional_format->value = 7;
conditional_format->format = format;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -24,17 +24,15 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format1,
'criteria': ">",
'value': 7,
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 7;
conditional_format->format = format;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -42,27 +42,20 @@ int main() {
lxw_format_get_dxf_index(format2);
lxw_format_get_dxf_index(format1);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
worksheet_conditional_tmp(worksheet, CELL("A1"), format1);
worksheet_conditional_tmp(worksheet, CELL("A1"), format2);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN_OR_EQUAL_TO;
conditional_format->value = 50;
conditional_format->format = format1;
worksheet_conditional_format_range(worksheet, RANGE("A1:J10"), conditional_format);
/*
worksheet_conditional_formatting(worksheet, "A1:J10",
:
'type': "cell",
'format': format1,
'criteria': ">=",
'value': 50,
);
worksheet_conditional_formatting(worksheet, "A1:J10",
:
'type': "cell",
'format': format2,
'criteria': "<",
'value': 50,
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 50;
conditional_format->format = format2;
worksheet_conditional_format_range(worksheet, RANGE("A1:J10"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -25,16 +25,14 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 5;
conditional_format->format = format;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
/* worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format,
'criteria': "greater than",
'value': 5
);*/
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -25,17 +25,14 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format,
'criteria': "greater than",
'value': 5
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 5;
conditional_format->format = format;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -25,15 +25,14 @@ int main() {
worksheet_write_number(worksheet, CELL("B5"), 30 , NULL);
worksheet_write_number(worksheet, CELL("B6"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/* worksheet_conditional_formatting(worksheet, "B3:B6",
:
'type': "cell",
'format': format,
'criteria': "greater than",
'value': 20
);*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 20;
conditional_format->format = format;
worksheet_conditional_format_range(worksheet, RANGE("B3:B6"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -26,15 +26,14 @@ int main() {
worksheet_write_number(worksheet, CELL("B5"), 30 , NULL);
worksheet_write_number(worksheet, CELL("B6"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/* worksheet_conditional_formatting(worksheet, "B3:B6",
:
'type': "cell",
'format': format,
'criteria': "greater than",
'value': 20
);*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 20;
conditional_format->format = format;
worksheet_conditional_format_range(worksheet, RANGE("B3:B6"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -26,16 +26,14 @@ int main() {
worksheet_write_number(worksheet, CELL("B5"), 30 , NULL);
worksheet_write_number(worksheet, CELL("B6"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 20;
conditional_format->format = format;
worksheet_conditional_format_range(worksheet, RANGE("B3:B6"), conditional_format);
/* worksheet_conditional_formatting(worksheet, "B3:B6",
:
'type': "cell",
'format': format,
'criteria': "greater than",
'value': 20
);*/
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -29,17 +29,20 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format1);
worksheet_conditional_tmp(worksheet, CELL("A2"), format2);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
$options =:
'type': "cell",
'format': format1,
'criteria': ">",
'value': 2,
};
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 2;
conditional_format->format = format1;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 8;
conditional_format->format = format2;
worksheet_conditional_format_cell(worksheet, CELL("A2"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -22,15 +22,15 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/* :
'type': "cell",
'format': format,
'criteria': "greater than",
'value': 5,
'stop_if_true': 1
);*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 5;
conditional_format->stop_if_true = LXW_TRUE;
conditional_format->format = format;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -25,28 +25,22 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format1);
worksheet_conditional_tmp(worksheet, CELL("A1"), format2);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/*
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format1,
'criteria': "less than",
'value': 5,
'stop_if_true': 1
);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 5;
conditional_format->stop_if_true = LXW_TRUE;
conditional_format->format = format1;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format2,
'criteria': "greater than",
'value': 20,
'stop_if_true': 1
);
*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 20;
conditional_format->stop_if_true = LXW_TRUE;
conditional_format->format = format2;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -25,26 +25,22 @@ int main() {
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
worksheet_conditional_tmp(worksheet, CELL("A1"), format1);
worksheet_conditional_tmp(worksheet, CELL("A1"), format2);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
/* worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format1,
'criteria': "less than",
'value': 5,
'stop_if_true': 0
);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_LESS_THAN;
conditional_format->value = 5;
conditional_format->stop_if_true = LXW_FALSE;
conditional_format->format = format1;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
worksheet_conditional_formatting(worksheet, "A1",
:
'type': "cell",
'format': format2,
'criteria': "greater than",
'value': 20,
'stop_if_true': 1
);*/
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 20;
conditional_format->stop_if_true = LXW_TRUE;
conditional_format->format = format2;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -0,0 +1,30 @@
/*****************************************************************************
* Test cases for libxlsxwriter.
*
* Test to compare output against Excel files.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "xlsxwriter.h"
int main() {
lxw_workbook *workbook = workbook_new("test_cond_format17.xlsx");
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
worksheet_write_number(worksheet, CELL("A1"), 10 , NULL);
worksheet_write_number(worksheet, CELL("A2"), 20 , NULL);
worksheet_write_number(worksheet, CELL("A3"), 30 , NULL);
worksheet_write_number(worksheet, CELL("A4"), 40 , NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_ARROWS;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
return workbook_close(workbook);
}

View File

@ -14,65 +14,52 @@ class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
"""
def test_cond_format01(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format01')
def test_cond_format02(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format02')
def test_cond_format03(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format03')
def test_cond_format04(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format04')
def test_cond_format05(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format05')
def test_cond_format06(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format06')
def test_cond_format07(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format07')
def test_cond_format08(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format08')
def test_cond_format09(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format09', 'cond_format08.xlsx')
def test_cond_format10(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format10')
def test_cond_format11(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format11')
def test_cond_format12(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format12')
def test_cond_format13(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format13', 'cond_format04.xlsx')
def test_cond_format14(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format14')
def test_cond_format15(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format15')
def test_cond_format16(self):
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<conditionalFormatting', '<cfRule', '<formula>', '</conditionalFormatting', '</cfRule']}
self.run_exe_test('test_cond_format16')
def test_cond_format17(self):
self.run_exe_test('test_cond_format17')

Binary file not shown.

View File

@ -0,0 +1,84 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format01) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"cellIs\" priority=\"1\" operator=\"greaterThan\">"
"<formula>5</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 5;
conditional_format->format = NULL;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,163 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format02) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:B4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:2\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"<c r=\"B1\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:2\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:2\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:2\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"cellIs\" priority=\"1\" operator=\"greaterThan\">"
"<formula>$B$1</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
worksheet_write_number(worksheet, CELL("B1"), 5, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value_string = "$B$1";
conditional_format->format = NULL;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
// This version uses a range formula "$B$1" -> "=$B$1".
CTEST(worksheet, worksheet_condtional_format02b) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:B4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:2\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"<c r=\"B1\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:2\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:2\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:2\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"cellIs\" priority=\"1\" operator=\"greaterThan\">"
"<formula>$B$1</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
worksheet_write_number(worksheet, CELL("B1"), 5, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value_string = "=$B$1";
conditional_format->format = NULL;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,181 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format03) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"cellIs\" priority=\"1\" operator=\"between\">"
"<formula>20</formula>"
"<formula>30</formula>"
"</cfRule>"
"<cfRule type=\"cellIs\" priority=\"2\" operator=\"notBetween\">"
"<formula>20</formula>"
"<formula>30</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_BETWEEN;
conditional_format->min_value = 20;
conditional_format->max_value = 30;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_NOT_BETWEEN;
conditional_format->min_value = 20;
conditional_format->max_value = 30;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
// Test cell references.
CTEST(worksheet, worksheet_condtional_format03b) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"cellIs\" priority=\"1\" operator=\"between\">"
"<formula>$B$1</formula>"
"<formula>$B$2</formula>"
"</cfRule>"
"<cfRule type=\"cellIs\" priority=\"2\" operator=\"notBetween\">"
"<formula>$B$1</formula>"
"<formula>$B$2</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_BETWEEN;
conditional_format->min_value_string = "$B$1";
conditional_format->max_value_string = "$B$2";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_NOT_BETWEEN;
conditional_format->min_value_string = "=$B$1";
conditional_format->max_value_string = "=$B$2";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,84 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format04) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"duplicateValues\" priority=\"1\"/>"
"<cfRule type=\"uniqueValues\" priority=\"2\"/>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_DUPLICATE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_UNIQUE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,123 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format05) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"aboveAverage\" priority=\"1\"/>"
"<cfRule type=\"aboveAverage\" priority=\"2\" aboveAverage=\"0\"/>"
"<cfRule type=\"aboveAverage\" priority=\"3\" equalAverage=\"1\"/>"
"<cfRule type=\"aboveAverage\" priority=\"4\" aboveAverage=\"0\" equalAverage=\"1\"/>"
"<cfRule type=\"aboveAverage\" priority=\"5\" stdDev=\"1\"/>"
"<cfRule type=\"aboveAverage\" priority=\"6\" aboveAverage=\"0\" stdDev=\"1\"/>"
"<cfRule type=\"aboveAverage\" priority=\"7\" stdDev=\"2\"/>"
"<cfRule type=\"aboveAverage\" priority=\"8\" aboveAverage=\"0\" stdDev=\"2\"/>"
"<cfRule type=\"aboveAverage\" priority=\"9\" stdDev=\"3\"/>"
"<cfRule type=\"aboveAverage\" priority=\"10\" aboveAverage=\"0\" stdDev=\"3\"/>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_ABOVE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_BELOW;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_ABOVE_OR_EQUAL;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_BELOW_OR_EQUAL;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_1_STD_DEV_ABOVE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_1_STD_DEV_BELOW;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_2_STD_DEV_ABOVE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_2_STD_DEV_BELOW;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_3_STD_DEV_ABOVE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_AVERAGE;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_AVERAGE_3_STD_DEV_BELOW;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,181 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format06) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"top10\" priority=\"1\" rank=\"10\"/>"
"<cfRule type=\"top10\" priority=\"2\" bottom=\"1\" rank=\"10\"/>"
"<cfRule type=\"top10\" priority=\"3\" percent=\"1\" rank=\"10\"/>"
"<cfRule type=\"top10\" priority=\"4\" percent=\"1\" bottom=\"1\" rank=\"10\"/>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_TOP;
conditional_format->value = 10;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_BOTTOM;
conditional_format->value = 10;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TOP;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TOP_OR_BOTTOM_PERCENT;
conditional_format->value = 10;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_BOTTOM;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TOP_OR_BOTTOM_PERCENT;
conditional_format->value = 10;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
// Test int truncation.
CTEST(worksheet, worksheet_condtional_format06b) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"top10\" priority=\"1\" rank=\"10\"/>"
"<cfRule type=\"top10\" priority=\"2\" bottom=\"1\" rank=\"10\"/>"
"<cfRule type=\"top10\" priority=\"3\" percent=\"1\" rank=\"10\"/>"
"<cfRule type=\"top10\" priority=\"4\" percent=\"1\" bottom=\"1\" rank=\"10\"/>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_TOP;
conditional_format->value = 10.1;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_BOTTOM;
conditional_format->value = 10.2;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TOP;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TOP_OR_BOTTOM_PERCENT;
conditional_format->value = 10.3;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_BOTTOM;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TOP_OR_BOTTOM_PERCENT;
conditional_format->value = 10.4;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,105 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format07) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"containsText\" priority=\"1\" operator=\"containsText\" text=\"foo\">"
"<formula>NOT(ISERROR(SEARCH(\"foo\",A1)))</formula>"
"</cfRule>"
"<cfRule type=\"notContainsText\" priority=\"2\" operator=\"notContains\" text=\"foo\">"
"<formula>ISERROR(SEARCH(\"foo\",A1))</formula>"
"</cfRule>"
"<cfRule type=\"beginsWith\" priority=\"3\" operator=\"beginsWith\" text=\"b\">"
"<formula>LEFT(A1,1)=\"b\"</formula>"
"</cfRule>"
"<cfRule type=\"endsWith\" priority=\"4\" operator=\"endsWith\" text=\"b\">"
"<formula>RIGHT(A1,1)=\"b\"</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_CONTAINING;
conditional_format->value_string = "foo";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_NOT_CONTAINING;
conditional_format->value_string = "foo";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_BEGINS_WITH;
conditional_format->value_string = "b";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_ENDS_WITH;
conditional_format->value_string = "b";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,144 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format08) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"timePeriod\" priority=\"1\" timePeriod=\"yesterday\">"
"<formula>FLOOR(A1,1)=TODAY()-1</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"2\" timePeriod=\"today\">"
"<formula>FLOOR(A1,1)=TODAY()</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"3\" timePeriod=\"tomorrow\">"
"<formula>FLOOR(A1,1)=TODAY()+1</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"4\" timePeriod=\"last7Days\">"
"<formula>AND(TODAY()-FLOOR(A1,1)&lt;=6,FLOOR(A1,1)&lt;=TODAY())</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"5\" timePeriod=\"lastWeek\">"
"<formula>AND(TODAY()-ROUNDDOWN(A1,0)&gt;=(WEEKDAY(TODAY())),TODAY()-ROUNDDOWN(A1,0)&lt;(WEEKDAY(TODAY())+7))</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"6\" timePeriod=\"thisWeek\">"
"<formula>AND(TODAY()-ROUNDDOWN(A1,0)&lt;=WEEKDAY(TODAY())-1,ROUNDDOWN(A1,0)-TODAY()&lt;=7-WEEKDAY(TODAY()))</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"7\" timePeriod=\"nextWeek\">"
"<formula>AND(ROUNDDOWN(A1,0)-TODAY()&gt;(7-WEEKDAY(TODAY())),ROUNDDOWN(A1,0)-TODAY()&lt;(15-WEEKDAY(TODAY())))</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"8\" timePeriod=\"lastMonth\">"
"<formula>AND(MONTH(A1)=MONTH(TODAY())-1,OR(YEAR(A1)=YEAR(TODAY()),AND(MONTH(A1)=1,YEAR(A1)=YEAR(TODAY())-1)))</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"9\" timePeriod=\"thisMonth\">"
"<formula>AND(MONTH(A1)=MONTH(TODAY()),YEAR(A1)=YEAR(TODAY()))</formula>"
"</cfRule>"
"<cfRule type=\"timePeriod\" priority=\"10\" timePeriod=\"nextMonth\">"
"<formula>AND(MONTH(A1)=MONTH(TODAY())+1,OR(YEAR(A1)=YEAR(TODAY()),AND(MONTH(A1)=12,YEAR(A1)=YEAR(TODAY())+1)))</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_YESTERDAY;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_TODAY;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_TOMORROW;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_LAST_7_DAYS;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_LAST_WEEK;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_THIS_WEEK;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_NEXT_WEEK;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_LAST_MONTH;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_THIS_MONTH;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TIME_PERIOD;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TIME_PERIOD_NEXT_MONTH;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,97 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format09) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"containsBlanks\" priority=\"1\">"
"<formula>LEN(TRIM(A1))=0</formula>"
"</cfRule>"
"<cfRule type=\"notContainsBlanks\" priority=\"2\">"
"<formula>LEN(TRIM(A1))&gt;0</formula>"
"</cfRule>"
"<cfRule type=\"containsErrors\" priority=\"3\">"
"<formula>ISERROR(A1)</formula>"
"</cfRule>"
"<cfRule type=\"notContainsErrors\" priority=\"4\">"
"<formula>NOT(ISERROR(A1))</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_BLANKS;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_NO_BLANKS;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ERRORS;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_NO_ERRORS;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,86 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format10) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"cellIs\" priority=\"1\" operator=\"greaterThan\">"
"<formula>40544</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_datetime datetime1 = {2011, 1, 1, 0, 0, 0};
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = lxw_datetime_to_excel_date(&datetime1, LXW_FALSE);
conditional_format->format = NULL;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,87 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format11) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"cellIs\" priority=\"1\" operator=\"between\">"
"<formula>40544</formula>"
"<formula>40908</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_datetime datetime1 = {2011, 1, 1, 0, 0, 0};
lxw_datetime datetime2 = {2011, 12, 31, 0, 0, 0};
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_BETWEEN;
conditional_format->min_value = lxw_datetime_to_excel_date(&datetime1, LXW_FALSE);;
conditional_format->max_value = lxw_datetime_to_excel_date(&datetime2, LXW_FALSE);;
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,515 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format12) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FFFF7128\"/>"
"<color rgb=\"FFFFEF9C\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_2_COLOR_SCALE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
// Test with explicit options.
CTEST(worksheet, worksheet_condtional_format12b) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FFFF7128\"/>"
"<color rgb=\"FFFFEF9C\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_2_COLOR_SCALE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_MINIMUM;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_MAXIMUM;
conditional_format->min_color = 0xFF7128;
conditional_format->max_color = 0xFFEF9C;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test with number values.
CTEST(worksheet, worksheet_condtional_format12c) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"num\" val=\"20\"/>"
"<cfvo type=\"num\" val=\"80\"/>"
"<color rgb=\"FFFF7128\"/>"
"<color rgb=\"FFFFEF9C\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_2_COLOR_SCALE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->min_value = 20;
conditional_format->max_value = 80;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
// Test with cell reference values.
CTEST(worksheet, worksheet_condtional_format12d) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"num\" val=\"$D$1\"/>"
"<cfvo type=\"num\" val=\"$D$2\"/>"
"<color rgb=\"FFFF7128\"/>"
"<color rgb=\"FFFFEF9C\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_2_COLOR_SCALE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->min_value_string = "$D$1";
conditional_format->max_value_string = "$D$2";
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,266 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format13) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"percentile\" val=\"50\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FFF8696B\"/>"
"<color rgb=\"FFFFEB84\"/>"
"<color rgb=\"FF63BE7B\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
// Test with explicit options.
CTEST(worksheet, worksheet_condtional_format13b) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"percentile\" val=\"50\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FFF8696B\"/>"
"<color rgb=\"FFFFEB84\"/>"
"<color rgb=\"FF63BE7B\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_MINIMUM;
conditional_format->mid_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENTILE;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_MAXIMUM;
conditional_format->mid_value = 50;
conditional_format->min_color = 0xF8696B;
conditional_format->max_color = 0xFFEB84;
conditional_format->max_color = 0x63BE7B;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,132 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format14) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,103 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format15) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"expression\" priority=\"1\">"
"<formula>$A$1&gt;5</formula>"
"</cfRule>"
"<cfRule type=\"expression\" priority=\"2\">"
"<formula>$A$2&lt;80</formula>"
"</cfRule>"
"<cfRule type=\"expression\" priority=\"3\">"
"<formula>\"1+2\"</formula>"
"</cfRule>"
"<cfRule type=\"expression\" priority=\"4\">"
"<formula>$A$3&gt;$A$4</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_FORMULA;
conditional_format->value_string = "=$A$1>5";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_FORMULA;
conditional_format->value_string = "=$A$2<80";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_FORMULA;
conditional_format->value_string = "\"1+2\"";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_FORMULA;
conditional_format->value_string = "=$A$3>$A$4";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,138 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format16) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"percentile\" val=\"50\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FFC5D9F1\"/>"
"<color rgb=\"FF8DB4E3\"/>"
"<color rgb=\"FF538ED5\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
conditional_format->min_color = 0xC5D9F1;
conditional_format->mid_color = 0x8DB4E3;
conditional_format->max_color = 0x538ED5;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,270 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format17) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"num\" val=\"$A$10\"/>"
"<cfvo type=\"percent\" val=\"52\"/>"
"<cfvo type=\"percentile\" val=\"99\"/>"
"<color rgb=\"FFF8696B\"/>"
"<color rgb=\"FFFFEB84\"/>"
"<color rgb=\"FF63BE7B\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
conditional_format->min_value_string = "$A$10";
conditional_format->mid_value = 52;
conditional_format->max_value = 99;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->mid_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENT;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENTILE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}
// Test with more cell ranges.
CTEST(worksheet, worksheet_condtional_format17b) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"num\" val=\"$A$1\"/>"
"<cfvo type=\"percent\" val=\"$A$2\"/>"
"<cfvo type=\"percentile\" val=\"$A$3\"/>"
"<color rgb=\"FFF8696B\"/>"
"<color rgb=\"FFFFEB84\"/>"
"<color rgb=\"FF63BE7B\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
conditional_format->min_value_string = "$A$1";
conditional_format->mid_value_string = "$A$2";
conditional_format->max_value_string = "$A$3";
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->mid_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENT;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENTILE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,135 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format18) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A3:A4 A1 A6:A8 A10 A12\">"
"<cfRule type=\"colorScale\" priority=\"1\">"
"<colorScale>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"percentile\" val=\"50\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FFF8696B\"/>"
"<color rgb=\"FFFFEB84\"/>"
"<color rgb=\"FF63BE7B\"/>"
"</colorScale>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_3_COLOR_SCALE;
conditional_format->multi_range = "A3:A4 A1 A6:A8 A10 A12";
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,142 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format19) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A12\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"<row r=\"10\" spans=\"1:1\">"
"<c r=\"A10\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"11\" spans=\"1:1\">"
"<c r=\"A11\">"
"<v>11</v>"
"</c>"
"</row>"
"<row r=\"12\" spans=\"1:1\">"
"<c r=\"A12\">"
"<v>12</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A12\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"num\" val=\"5\"/>"
"<cfvo type=\"percent\" val=\"90\"/>"
"<color rgb=\"FF8DB4E3\"/>"
"</dataBar>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
worksheet_write_number(worksheet, CELL("A10"), 10, NULL);
worksheet_write_number(worksheet, CELL("A11"), 11, NULL);
worksheet_write_number(worksheet, CELL("A12"), 12, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->min_value = 5;
conditional_format->max_value = 90;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENT;
conditional_format->bar_color = 0x8DB4E3;
// Mid values should be ignored.
conditional_format->mid_value = 52;
conditional_format->mid_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENTILE;
worksheet_conditional_format_range(worksheet, RANGE("A1:A12"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,105 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format20) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1:A4\">"
"<cfRule type=\"beginsWith\" priority=\"1\" operator=\"beginsWith\" text=\"b\">"
"<formula>LEFT(A1,1)=\"b\"</formula>"
"</cfRule>"
"<cfRule type=\"beginsWith\" priority=\"2\" operator=\"beginsWith\" text=\"bc\">"
"<formula>LEFT(A1,2)=\"bc\"</formula>"
"</cfRule>"
"<cfRule type=\"endsWith\" priority=\"3\" operator=\"endsWith\" text=\"z\">"
"<formula>RIGHT(A1,1)=\"z\"</formula>"
"</cfRule>"
"<cfRule type=\"endsWith\" priority=\"4\" operator=\"endsWith\" text=\"yz\">"
"<formula>RIGHT(A1,2)=\"yz\"</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_BEGINS_WITH;
conditional_format->value_string = "b";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_BEGINS_WITH;
conditional_format->value_string = "bc";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_ENDS_WITH;
conditional_format->value_string = "z";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_TEXT;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_TEXT_ENDS_WITH;
conditional_format->value_string = "yz";
worksheet_conditional_format_range(worksheet, RANGE("A1:A4"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,84 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format21) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A4\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>10</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>20</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>30</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>40</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"cellIs\" priority=\"1\" stopIfTrue=\"1\" operator=\"greaterThan\">"
"<formula>5</formula>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 10, NULL);
worksheet_write_number(worksheet, CELL("A2"), 20, NULL);
worksheet_write_number(worksheet, CELL("A3"), 30, NULL);
worksheet_write_number(worksheet, CELL("A4"), 40, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_CELL;
conditional_format->criteria = LXW_CONDITIONAL_CRITERIA_GREATER_THAN;
conditional_format->value = 5;
conditional_format->stop_if_true = LXW_TRUE;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,227 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format22) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A9\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"<row r=\"9\" spans=\"1:1\">"
"<c r=\"A9\">"
"<v>9</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"iconSet\" priority=\"1\">"
"<iconSet iconSet=\"3Arrows\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2\">"
"<cfRule type=\"iconSet\" priority=\"2\">"
"<iconSet iconSet=\"3Flags\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3\">"
"<cfRule type=\"iconSet\" priority=\"3\">"
"<iconSet iconSet=\"3TrafficLights2\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A4\">"
"<cfRule type=\"iconSet\" priority=\"4\">"
"<iconSet iconSet=\"3Symbols\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A5\">"
"<cfRule type=\"iconSet\" priority=\"5\">"
"<iconSet iconSet=\"4Arrows\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"25\"/>"
"<cfvo type=\"percent\" val=\"50\"/>"
"<cfvo type=\"percent\" val=\"75\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A6\">"
"<cfRule type=\"iconSet\" priority=\"6\">"
"<iconSet iconSet=\"4RedToBlack\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"25\"/>"
"<cfvo type=\"percent\" val=\"50\"/>"
"<cfvo type=\"percent\" val=\"75\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A7\">"
"<cfRule type=\"iconSet\" priority=\"7\">"
"<iconSet iconSet=\"4TrafficLights\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"25\"/>"
"<cfvo type=\"percent\" val=\"50\"/>"
"<cfvo type=\"percent\" val=\"75\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A8\">"
"<cfRule type=\"iconSet\" priority=\"8\">"
"<iconSet iconSet=\"5ArrowsGray\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"20\"/>"
"<cfvo type=\"percent\" val=\"40\"/>"
"<cfvo type=\"percent\" val=\"60\"/>"
"<cfvo type=\"percent\" val=\"80\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A9\">"
"<cfRule type=\"iconSet\" priority=\"9\">"
"<iconSet iconSet=\"5Quarters\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"20\"/>"
"<cfvo type=\"percent\" val=\"40\"/>"
"<cfvo type=\"percent\" val=\"60\"/>"
"<cfvo type=\"percent\" val=\"80\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
worksheet_write_number(worksheet, CELL("A9"), 9, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_ARROWS;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_FLAGS;
worksheet_conditional_format_cell(worksheet, CELL("A2"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_TRAFFIC_LIGHTS_RIMMED;
worksheet_conditional_format_cell(worksheet, CELL("A3"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_SYMBOLS_CIRCLED;
worksheet_conditional_format_cell(worksheet, CELL("A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_4_ARROWS;
worksheet_conditional_format_cell(worksheet, CELL("A5"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_4_RED_TO_BLACK;
worksheet_conditional_format_cell(worksheet, CELL("A6"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_4_TRAFFIC_LIGHTS;
worksheet_conditional_format_cell(worksheet, CELL("A7"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_5_ARROWS_GRAY;
worksheet_conditional_format_cell(worksheet, CELL("A8"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_5_QUARTERS;
worksheet_conditional_format_cell(worksheet, CELL("A9"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,207 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_condtional_format23) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1:A8\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData>"
"<row r=\"1\" spans=\"1:1\">"
"<c r=\"A1\">"
"<v>1</v>"
"</c>"
"</row>"
"<row r=\"2\" spans=\"1:1\">"
"<c r=\"A2\">"
"<v>2</v>"
"</c>"
"</row>"
"<row r=\"3\" spans=\"1:1\">"
"<c r=\"A3\">"
"<v>3</v>"
"</c>"
"</row>"
"<row r=\"4\" spans=\"1:1\">"
"<c r=\"A4\">"
"<v>4</v>"
"</c>"
"</row>"
"<row r=\"5\" spans=\"1:1\">"
"<c r=\"A5\">"
"<v>5</v>"
"</c>"
"</row>"
"<row r=\"6\" spans=\"1:1\">"
"<c r=\"A6\">"
"<v>6</v>"
"</c>"
"</row>"
"<row r=\"7\" spans=\"1:1\">"
"<c r=\"A7\">"
"<v>7</v>"
"</c>"
"</row>"
"<row r=\"8\" spans=\"1:1\">"
"<c r=\"A8\">"
"<v>8</v>"
"</c>"
"</row>"
"</sheetData>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"iconSet\" priority=\"1\">"
"<iconSet iconSet=\"3ArrowsGray\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2\">"
"<cfRule type=\"iconSet\" priority=\"2\">"
"<iconSet>"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3\">"
"<cfRule type=\"iconSet\" priority=\"3\">"
"<iconSet iconSet=\"3Signs\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A4\">"
"<cfRule type=\"iconSet\" priority=\"4\">"
"<iconSet iconSet=\"3Symbols2\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"33\"/>"
"<cfvo type=\"percent\" val=\"67\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A5\">"
"<cfRule type=\"iconSet\" priority=\"5\">"
"<iconSet iconSet=\"4ArrowsGray\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"25\"/>"
"<cfvo type=\"percent\" val=\"50\"/>"
"<cfvo type=\"percent\" val=\"75\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A6\">"
"<cfRule type=\"iconSet\" priority=\"6\">"
"<iconSet iconSet=\"4Rating\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"25\"/>"
"<cfvo type=\"percent\" val=\"50\"/>"
"<cfvo type=\"percent\" val=\"75\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A7\">"
"<cfRule type=\"iconSet\" priority=\"7\">"
"<iconSet iconSet=\"5Arrows\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"20\"/>"
"<cfvo type=\"percent\" val=\"40\"/>"
"<cfvo type=\"percent\" val=\"60\"/>"
"<cfvo type=\"percent\" val=\"80\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A8\">"
"<cfRule type=\"iconSet\" priority=\"8\">"
"<iconSet iconSet=\"5Rating\">"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"20\"/>"
"<cfvo type=\"percent\" val=\"40\"/>"
"<cfvo type=\"percent\" val=\"60\"/>"
"<cfvo type=\"percent\" val=\"80\"/>"
"</iconSet>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
worksheet_write_number(worksheet, CELL("A1"), 1, NULL);
worksheet_write_number(worksheet, CELL("A2"), 2, NULL);
worksheet_write_number(worksheet, CELL("A3"), 3, NULL);
worksheet_write_number(worksheet, CELL("A4"), 4, NULL);
worksheet_write_number(worksheet, CELL("A5"), 5, NULL);
worksheet_write_number(worksheet, CELL("A6"), 6, NULL);
worksheet_write_number(worksheet, CELL("A7"), 7, NULL);
worksheet_write_number(worksheet, CELL("A8"), 8, NULL);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_ARROWS_GRAY;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_TRAFFIC_LIGHTS;
worksheet_conditional_format_cell(worksheet, CELL("A2"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_SIGNS;
worksheet_conditional_format_cell(worksheet, CELL("A3"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_3_SYMBOLS;
worksheet_conditional_format_cell(worksheet, CELL("A4"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_4_ARROWS_GRAY;
worksheet_conditional_format_cell(worksheet, CELL("A5"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_4_RATINGS;
worksheet_conditional_format_cell(worksheet, CELL("A6"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_5_ARROWS;
worksheet_conditional_format_cell(worksheet, CELL("A7"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_TYPE_ICON_SETS;
conditional_format->icon_style = LXW_CONDITIONAL_ICONS_5_RATINGS;
worksheet_conditional_format_cell(worksheet, CELL("A8"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,56 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar01) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,81 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar02) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,145 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar03) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2:B2\">"
"<cfRule type=\"dataBar\" priority=\"2\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF63C384\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000002}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3:C3\">"
"<cfRule type=\"dataBar\" priority=\"3\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FFFF555A\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000003}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000002}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF63C384\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A2:B2</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000003}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FFFF555A\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A3:C3</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->bar_color = 0x63C384;
worksheet_conditional_format_range(worksheet, RANGE("A2:B2"), conditional_format);
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->bar_color = 0xFF555A;
worksheet_conditional_format_range(worksheet, RANGE("A3:C3"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,145 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar04) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2:B2\">"
"<cfRule type=\"dataBar\" priority=\"2\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF63C384\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000002}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3:C3\">"
"<cfRule type=\"dataBar\" priority=\"3\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FFFF555A\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000003}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" gradient=\"0\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000002}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A2:B2</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000003}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FFFF0000\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A3:C3</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_solid = LXW_TRUE;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_no_border = LXW_TRUE;
conditional_format->bar_color = 0x63C384;
worksheet_conditional_format_range(worksheet, RANGE("A2:B2"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0xFF555A;
conditional_format->bar_border_color = 0xFF0000;
worksheet_conditional_format_range(worksheet, RANGE("A3:C3"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,147 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar05) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2:B2\">"
"<cfRule type=\"dataBar\" priority=\"2\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF63C384\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000002}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3:C3\">"
"<cfRule type=\"dataBar\" priority=\"3\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FFFF555A\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000003}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" direction=\"leftToRight\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000002}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" direction=\"rightToLeft\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF63C384\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A2:B2</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000003}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FFFF555A\"/>"
"<x14:negativeFillColor rgb=\"FFFFFF00\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A3:C3</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_direction = LXW_CONDITIONAL_BAR_DIRECTION_LEFT_TO_RIGHT;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0x63C384;
conditional_format->bar_direction = LXW_CONDITIONAL_BAR_DIRECTION_RIGHT_TO_LEFT;
worksheet_conditional_format_range(worksheet, RANGE("A2:B2"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0xFF555A;
conditional_format->bar_negative_color = 0xFFFF00;
worksheet_conditional_format_range(worksheet, RANGE("A3:C3"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,145 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar06) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2:B2\">"
"<cfRule type=\"dataBar\" priority=\"2\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF63C384\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000002}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3:C3\">"
"<cfRule type=\"dataBar\" priority=\"3\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FFFF555A\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000003}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarColorSameAsPositive=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000002}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF63C384\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FF92D050\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A2:B2</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000003}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FFFF555A\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A3:C3</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_negative_color_same = LXW_TRUE;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0x63C384;
conditional_format->bar_negative_border_color = 0x92D050;
worksheet_conditional_format_range(worksheet, RANGE("A2:B2"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0xFF555A;
conditional_format->bar_negative_border_color_same = LXW_TRUE;
worksheet_conditional_format_range(worksheet, RANGE("A3:C3"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,146 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar07) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2:B2\">"
"<cfRule type=\"dataBar\" priority=\"2\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF63C384\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000002}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3:C3\">"
"<cfRule type=\"dataBar\" priority=\"3\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FFFF555A\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000003}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\" axisPosition=\"middle\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000002}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\" axisPosition=\"none\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF63C384\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A2:B2</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000003}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FFFF555A\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF0070C0\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A3:C3</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_axis_position = LXW_CONDITIONAL_BAR_AXIS_MIDPOINT;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0x63C384;
conditional_format->bar_axis_position = LXW_CONDITIONAL_BAR_AXIS_NONE;
worksheet_conditional_format_range(worksheet, RANGE("A2:B2"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0xFF555A;
conditional_format->bar_axis_color = 0x0070C0;
worksheet_conditional_format_range(worksheet, RANGE("A3:C3"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,57 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar08) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar showValue=\"0\">"
"<cfvo type=\"min\" val=\"0\"/>"
"<cfvo type=\"max\" val=\"0\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_only = LXW_TRUE;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,82 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar09) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar showValue=\"0\">"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"autoMin\"/>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_only = LXW_TRUE;
conditional_format->data_bar_2010 = LXW_TRUE;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,165 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar10) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"min\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2:B2\">"
"<cfRule type=\"dataBar\" priority=\"2\">"
"<dataBar>"
"<cfvo type=\"num\" val=\"0\"/>"
"<cfvo type=\"num\" val=\"0\"/>"
"<color rgb=\"FF63C384\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000002}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3:C3\">"
"<cfRule type=\"dataBar\" priority=\"3\">"
"<dataBar>"
"<cfvo type=\"percent\" val=\"0\"/>"
"<cfvo type=\"percent\" val=\"100\"/>"
"<color rgb=\"FFFF555A\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000003}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"min\"/>"
"<x14:cfvo type=\"max\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000002}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"num\">"
"<xm:f>0</xm:f>"
"</x14:cfvo>"
"<x14:cfvo type=\"num\">"
"<xm:f>0</xm:f>"
"</x14:cfvo>"
"<x14:borderColor rgb=\"FF63C384\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A2:B2</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000003}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"percent\">"
"<xm:f>0</xm:f>"
"</x14:cfvo>"
"<x14:cfvo type=\"percent\">"
"<xm:f>100</xm:f>"
"</x14:cfvo>"
"<x14:borderColor rgb=\"FFFF555A\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A3:C3</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_MINIMUM;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_MAXIMUM;
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0x63C384;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_NUMBER;
conditional_format->min_value = 0;
conditional_format->max_value = 0;
worksheet_conditional_format_range(worksheet, RANGE("A2:B2"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->bar_color = 0xFF555A;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENT;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENT;
conditional_format->min_value = 0;
conditional_format->max_value = 100;
worksheet_conditional_format_range(worksheet, RANGE("A3:C3"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}

View File

@ -0,0 +1,169 @@
/*
* Tests for the libxlsxwriter library.
*
* Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
*
*/
#include "../ctest.h"
#include "../helper.h"
#include "xlsxwriter/worksheet.h"
#include "xlsxwriter/shared_strings.h"
// Test assembling a complete Worksheet file.
CTEST(worksheet, worksheet_data_bar11) {
char* got;
char exp[] =
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" mc:Ignorable=\"x14ac\">"
"<dimension ref=\"A1\"/>"
"<sheetViews>"
"<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>"
"</sheetViews>"
"<sheetFormatPr defaultRowHeight=\"15\" x14ac:dyDescent=\"0.25\"/>"
"<sheetData/>"
"<conditionalFormatting sqref=\"A1\">"
"<cfRule type=\"dataBar\" priority=\"1\">"
"<dataBar>"
"<cfvo type=\"formula\" val=\"$B$1\"/>"
"<cfvo type=\"max\"/>"
"<color rgb=\"FF638EC6\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000001}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A2:B2\">"
"<cfRule type=\"dataBar\" priority=\"2\">"
"<dataBar>"
"<cfvo type=\"formula\" val=\"$B$1\"/>"
"<cfvo type=\"formula\" val=\"$C$1\"/>"
"<color rgb=\"FF63C384\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000002}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<conditionalFormatting sqref=\"A3:C3\">"
"<cfRule type=\"dataBar\" priority=\"3\">"
"<dataBar>"
"<cfvo type=\"percentile\" val=\"10\"/>"
"<cfvo type=\"percentile\" val=\"90\"/>"
"<color rgb=\"FFFF555A\"/>"
"</dataBar>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{B025F937-C7B1-47D3-B67F-A62EFF666E3E}\">"
"<x14:id>{DA7ABA51-AAAA-BBBB-0001-000000000003}</x14:id>"
"</ext>"
"</extLst>"
"</cfRule>"
"</conditionalFormatting>"
"<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>"
"<extLst>"
"<ext xmlns:x14=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/main\" uri=\"{78C0D931-6437-407d-A8EE-F0AAD7539E65}\">"
"<x14:conditionalFormattings>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000001}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"formula\">"
"<xm:f>$B$1</xm:f>"
"</x14:cfvo>"
"<x14:cfvo type=\"autoMax\"/>"
"<x14:borderColor rgb=\"FF638EC6\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A1</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000002}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"formula\">"
"<xm:f>$B$1</xm:f>"
"</x14:cfvo>"
"<x14:cfvo type=\"formula\">"
"<xm:f>$C$1</xm:f>"
"</x14:cfvo>"
"<x14:borderColor rgb=\"FF63C384\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A2:B2</xm:sqref>"
"</x14:conditionalFormatting>"
"<x14:conditionalFormatting xmlns:xm=\"http://schemas.microsoft.com/office/excel/2006/main\">"
"<x14:cfRule type=\"dataBar\" id=\"{DA7ABA51-AAAA-BBBB-0001-000000000003}\">"
"<x14:dataBar minLength=\"0\" maxLength=\"100\" border=\"1\" negativeBarBorderColorSameAsPositive=\"0\">"
"<x14:cfvo type=\"percentile\">"
"<xm:f>10</xm:f>"
"</x14:cfvo>"
"<x14:cfvo type=\"percentile\">"
"<xm:f>90</xm:f>"
"</x14:cfvo>"
"<x14:borderColor rgb=\"FFFF555A\"/>"
"<x14:negativeFillColor rgb=\"FFFF0000\"/>"
"<x14:negativeBorderColor rgb=\"FFFF0000\"/>"
"<x14:axisColor rgb=\"FF000000\"/>"
"</x14:dataBar>"
"</x14:cfRule>"
"<xm:sqref>A3:C3</xm:sqref>"
"</x14:conditionalFormatting>"
"</x14:conditionalFormattings>"
"</ext>"
"</extLst>"
"</worksheet>";
FILE* testfile = lxw_tmpfile(NULL);
lxw_worksheet *worksheet = lxw_worksheet_new(NULL);
worksheet->file = testfile;
worksheet_select(worksheet);
lxw_conditional_format *conditional_format = calloc(1, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_FORMULA;
conditional_format->min_value_string = "=$B$1";
worksheet_conditional_format_cell(worksheet, CELL("A1"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->bar_color = 0x63C384;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_FORMULA;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_FORMULA;
conditional_format->min_value_string = "=$B$1";
conditional_format->max_value_string = "=$C$1";
worksheet_conditional_format_range(worksheet, RANGE("A2:B2"), conditional_format);
memset(conditional_format, 0, sizeof(lxw_conditional_format));
conditional_format->type = LXW_CONDITIONAL_DATA_BAR;
conditional_format->data_bar_2010 = LXW_TRUE;
conditional_format->bar_color = 0xFF555A;
conditional_format->min_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENTILE;
conditional_format->max_rule_type = LXW_CONDITIONAL_RULE_TYPE_PERCENTILE;
conditional_format->min_value = 10;
conditional_format->max_value = 90;
worksheet_conditional_format_range(worksheet, RANGE("A3:C3"), conditional_format);
free(conditional_format);
lxw_worksheet_assemble_xml_file(worksheet);
RUN_XLSX_STREQ_SHORT(exp, got);
lxw_worksheet_free(worksheet);
}