Compare commits

...

4 Commits
v1.2.1 ... main

Author SHA1 Message Date
John McNamara
7dbdad43a5 chart: add initial layout support
Feature: #477
2025-03-28 00:33:23 +00:00
John McNamara
61a3ceaf9a test: update python test runner 2025-03-27 17:58:06 +00:00
Scribe of the Ziggurat
545939dfd3
zig: update for zig build tools
Update zig build tools and set minimum zig version to 0.14.0.

Closes #474
Closes #475
2025-03-12 08:59:56 +00:00
John McNamara
988d3a5bec Prep for release 1.2.1. 2025-02-28 08:53:15 +00:00
14 changed files with 551 additions and 64 deletions

View File

@ -16,6 +16,7 @@
[gh_471]: https://github.com/jmcnamara/libxlsxwriter/issues/471
- Fix buffer overflow in Table formula expansion.
### Packagers:

View File

@ -1,10 +1,12 @@
.{
.name = "libxlsxwriter",
.name = .libxlsxwriter,
.version = "1.1.9",
.fingerprint = 0xa28d9a85f22fad0e,
.minimum_zig_version = "0.14.0",
.dependencies = .{
.zlib = .{
.url = "git+https://github.com/madler/zlib#v1.3.1",
.hash = "1220fed0c74e1019b3ee29edae2051788b080cd96e90d56836eea857b0b966742efb",
.hash = "N-V-__8AAB0eQwD-0MdOEBmz7intriBReIsIDNlukNVoNu6o",
},
},
.paths = .{

View File

@ -737,6 +737,29 @@ typedef struct lxw_chart_font {
} lxw_chart_font;
/**
* @brief Struct to represent Excel chart element layout dimensions.
*
* todo:
*/
typedef struct lxw_chart_layout {
/** TODO:*/
double x;
/** TODO:*/
double y;
/** TODO:*/
double width;
/** TODO:*/
double height;
uint8_t has_inner;
} lxw_chart_layout;
typedef struct lxw_chart_marker {
uint8_t type;
@ -751,6 +774,7 @@ typedef struct lxw_chart_legend {
lxw_chart_font *font;
uint8_t position;
lxw_chart_layout *layout;
} lxw_chart_legend;
@ -769,6 +793,7 @@ typedef struct lxw_chart_title {
lxw_series_range *range;
struct lxw_series_data_point data_point;
lxw_chart_layout *layout;
} lxw_chart_title;
@ -1149,8 +1174,10 @@ typedef struct lxw_chart {
lxw_chart_line *chartarea_line;
lxw_chart_fill *chartarea_fill;
lxw_chart_pattern *chartarea_pattern;
lxw_chart_line *plotarea_line;
lxw_chart_fill *plotarea_fill;
lxw_chart_layout *plotarea_layout;
lxw_chart_pattern *plotarea_pattern;
uint8_t has_drop_lines;
@ -3279,6 +3306,14 @@ void chart_title_set_name_font(lxw_chart *chart, lxw_chart_font *font);
*/
void chart_title_off(lxw_chart *chart);
/**
* @brief TODO: Add description.
*
* @param chart Pointer to a lxw_chart instance to be configured.
* @param layout A pointer to a chart #lxw_chart_layout struct.
*/
void chart_title_set_layout(lxw_chart *self, lxw_chart_layout * layout);
/**
* @brief Set the position of the chart legend.
*
@ -3317,6 +3352,16 @@ void chart_title_off(lxw_chart *chart);
*/
void chart_legend_set_position(lxw_chart *chart, uint8_t position);
/**
* @brief Set the layout of the chart legend.
*
* @param chart Pointer to a lxw_chart instance to be configured.
* @param layout A pointer to a chart #lxw_chart_layout struct.
*
* TODO: Add example and image.
*/
void chart_legend_set_layout(lxw_chart *chart, lxw_chart_layout * layout);
/**
* @brief Set the font properties for a chart legend.
*
@ -3484,6 +3529,14 @@ void chart_plotarea_set_fill(lxw_chart *chart, lxw_chart_fill *fill);
*/
void chart_plotarea_set_pattern(lxw_chart *chart, lxw_chart_pattern *pattern);
/**
* @brief Set the layout of a plotarea. TODO:
*
* @param chart
* @param layout
*/
void chart_plotarea_set_layout(lxw_chart *chart, lxw_chart_layout * layout);
/**
* @brief Set the chart style type.
*

View File

@ -225,18 +225,22 @@ lxw_chart_free(lxw_chart *chart)
_chart_free_font(chart->title.font);
_chart_free_range(chart->title.range);
free(chart->title.name);
free(chart->title.layout);
/* Chart legend. */
_chart_free_font(chart->legend.font);
free(chart->delete_series);
free(chart->legend.layout);
free(chart->delete_series);
free(chart->default_marker);
free(chart->chartarea_line);
free(chart->chartarea_fill);
free(chart->chartarea_pattern);
free(chart->plotarea_line);
free(chart->plotarea_fill);
free(chart->plotarea_layout);
free(chart->plotarea_pattern);
free(chart->drop_lines_line);
@ -449,6 +453,24 @@ _chart_convert_pattern_args(lxw_chart_pattern *user_pattern)
return pattern;
}
/*
* Create a copy of a user supplied layout.
*/
STATIC lxw_chart_layout *
_chart_convert_layout_args(lxw_chart_layout *user_layout)
{
lxw_chart_layout *layout = calloc(1, sizeof(struct lxw_chart_layout));
RETURN_ON_MEM_ERROR(layout, NULL);
/* Copy the user supplied properties. */
layout->x = user_layout->x;
layout->y = user_layout->y;
layout->width = user_layout->width;
layout->height = user_layout->height;
return layout;
}
/*
* Set a marker type for a series.
*/
@ -645,13 +667,101 @@ _chart_write_style(lxw_chart *self)
LXW_FREE_ATTRIBUTES();
}
/*
* Write the <c:layoutTarget> element.
*/
STATIC void
_chart_write_layout_target(lxw_chart *self)
{
struct xml_attribute_list attributes;
struct xml_attribute *attribute;
LXW_INIT_ATTRIBUTES();
LXW_PUSH_ATTRIBUTES_STR("val", "inner");
lxw_xml_empty_tag(self->file, "c:layoutTarget", &attributes);
LXW_FREE_ATTRIBUTES();
}
/*
* Write the <c:xMode> and <c:yMode> element.
*/
STATIC void
_chart_write_layout_mode(lxw_chart *self, char *mode)
{
struct xml_attribute_list attributes;
struct xml_attribute *attribute;
LXW_INIT_ATTRIBUTES();
LXW_PUSH_ATTRIBUTES_STR("val", "edge");
lxw_xml_empty_tag(self->file, mode, &attributes);
LXW_FREE_ATTRIBUTES();
}
/*
* Write the layout dimension elements.
*/
STATIC void
_chart_write_layout_dimension(lxw_chart *self, char *dimension, double value)
{
struct xml_attribute_list attributes;
struct xml_attribute *attribute;
LXW_INIT_ATTRIBUTES();
LXW_PUSH_ATTRIBUTES_DBL("val", value);
lxw_xml_empty_tag(self->file, dimension, &attributes);
LXW_FREE_ATTRIBUTES();
}
/*
* Write the <c:manualLayout> element.
*/
STATIC void
_chart_write_manual_layout(lxw_chart *self, lxw_chart_layout *layout)
{
lxw_xml_start_tag(self->file, "c:manualLayout", NULL);
/* Write the c:layoutTarget element. */
if (layout->has_inner)
_chart_write_layout_target(self);
/* Write the c:xMode and c:yMode elements. */
_chart_write_layout_mode(self, "c:xMode");
_chart_write_layout_mode(self, "c:yMode");
/* Write the dimension elements. */
_chart_write_layout_dimension(self, "c:x", layout->x);
_chart_write_layout_dimension(self, "c:y", layout->y);
if (layout->width > 0.0)
_chart_write_layout_dimension(self, "c:w", layout->width);
if (layout->height > 0.0)
_chart_write_layout_dimension(self, "c:h", layout->height);
lxw_xml_end_tag(self->file, "c:manualLayout");
}
/*
* Write the <c:layout> element.
*/
STATIC void
_chart_write_layout(lxw_chart *self)
_chart_write_layout(lxw_chart *self, lxw_chart_layout *layout)
{
lxw_xml_empty_tag(self->file, "c:layout", NULL);
if (layout == NULL) {
lxw_xml_empty_tag(self->file, "c:layout", NULL);
}
else {
lxw_xml_start_tag(self->file, "c:layout", NULL);
/* Write the c:manualLayout element. */
_chart_write_manual_layout(self, layout);
lxw_xml_end_tag(self->file, "c:layout");
}
}
/*
@ -1538,7 +1648,7 @@ _chart_write_title_rich(lxw_chart *self, lxw_chart_title *title)
title->font);
/* Write the c:layout element. */
_chart_write_layout(self);
_chart_write_layout(self, self->title.layout);
lxw_xml_end_tag(self->file, "c:title");
}
@ -1555,7 +1665,7 @@ _chart_write_title_formula(lxw_chart *self, lxw_chart_title *title)
_chart_write_tx_formula(self, title);
/* Write the c:layout element. */
_chart_write_layout(self);
_chart_write_layout(self, self->title.layout);
/* Write the c:txPr element. */
_chart_write_tx_pr(self, title->is_horizontal, title->font);
@ -3796,7 +3906,7 @@ _chart_write_legend(lxw_chart *self)
}
/* Write the c:layout element. */
_chart_write_layout(self);
_chart_write_layout(self, self->legend.layout);
if (self->chart_group == LXW_CHART_PIE
|| self->chart_group == LXW_CHART_DOUGHNUT) {
@ -4737,7 +4847,7 @@ _chart_write_scatter_plot_area(lxw_chart *self)
lxw_xml_start_tag(self->file, "c:plotArea", NULL);
/* Write the c:layout element. */
_chart_write_layout(self);
_chart_write_layout(self, self->plotarea_layout);
/* Write subclass chart type elements for primary and secondary axes. */
self->write_chart_type(self);
@ -4769,7 +4879,7 @@ _chart_write_pie_plot_area(lxw_chart *self)
lxw_xml_start_tag(self->file, "c:plotArea", NULL);
/* Write the c:layout element. */
_chart_write_layout(self);
_chart_write_layout(self, self->plotarea_layout);
/* Write subclass chart type elements for primary and secondary axes. */
self->write_chart_type(self);
@ -4790,7 +4900,7 @@ _chart_write_plot_area(lxw_chart *self)
lxw_xml_start_tag(self->file, "c:plotArea", NULL);
/* Write the c:layout element. */
_chart_write_layout(self);
_chart_write_layout(self, self->plotarea_layout);
/* Write subclass chart type elements for primary and secondary axes. */
self->write_chart_type(self);
@ -6444,6 +6554,21 @@ chart_title_off(lxw_chart *self)
self->title.off = LXW_TRUE;
}
/*
* Set a layout for the chart title.
*/
void
chart_title_set_layout(lxw_chart *self, lxw_chart_layout *layout)
{
if (!layout)
return;
/* Free any previously allocated resource. */
free(self->title.layout);
self->title.layout = _chart_convert_layout_args(layout);
}
/*
* Set the chart legend position.
*/
@ -6453,6 +6578,21 @@ chart_legend_set_position(lxw_chart *self, uint8_t position)
self->legend.position = position;
}
/*
* Set a layout for the chart legend.
*/
void
chart_legend_set_layout(lxw_chart *self, lxw_chart_layout *layout)
{
if (!layout)
return;
/* Free any previously allocated resource. */
free(self->legend.layout);
self->legend.layout = _chart_convert_layout_args(layout);
}
/*
* Set the legend font.
*/
@ -6584,6 +6724,24 @@ chart_plotarea_set_pattern(lxw_chart *self, lxw_chart_pattern *pattern)
self->plotarea_pattern = _chart_convert_pattern_args(pattern);
}
/*
* Set a layout for the plotarea.
*/
void
chart_plotarea_set_layout(lxw_chart *self, lxw_chart_layout *layout)
{
if (!layout)
return;
/* Free any previously allocated resource. */
free(self->plotarea_layout);
self->plotarea_layout = _chart_convert_layout_args(layout);
/* Plotarea has an additional layout field. */
self->plotarea_layout->has_inner = LXW_TRUE;
}
/*
* Turn on the chart data table.
*/

View File

@ -6,29 +6,26 @@
# Copyright 2014-2025, John McNamara, jmcnamara@cpan.org.
#
import re
import sys
import os.path
from zipfile import ZipFile
from zipfile import BadZipfile
from zipfile import LargeZipFile
import re
from zipfile import BadZipFile, LargeZipFile, ZipFile
def _xml_to_list(xml_str):
# Convert test generated XML strings into lists for comparison testing.
# Split the XML string at tag boundaries.
parser = re.compile(r'>\s*<')
parser = re.compile(r">\s*<")
elements = parser.split(xml_str.strip())
elements = [s.replace("\r", "") for s in elements]
# Add back the removed brackets.
for index, element in enumerate(elements):
if not element[0] == '<':
elements[index] = '<' + elements[index]
if not element[-1] == '>':
elements[index] = elements[index] + '>'
if not element[0] == "<":
elements[index] = "<" + elements[index]
if not element[-1] == ">":
elements[index] = elements[index] + ">"
return elements
@ -43,7 +40,7 @@ def _vml_to_list(vml_str):
vml_str = vml_str.replace("\r", "")
vml = vml_str.split("\n")
vml_str = ''
vml_str = ""
for line in vml:
# Skip blank lines.
@ -61,11 +58,11 @@ def _vml_to_list(vml_str):
line += " "
# Add newline after element end.
if re.search('>$', line):
if re.search(">$", line):
line += "\n"
# Split multiple elements.
line = line.replace('><', ">\n<")
line = line.replace("><", ">\n<")
# Put all of Anchor on one line.
if line == "<x:Anchor>\n":
@ -109,28 +106,28 @@ def _compare_xlsx_files(got_file, exp_file, ignore_files, ignore_elements):
# XML file into an list of XML elements.
try:
# Open the XlsxWriter as a zip file for testing.
got_zip = ZipFile(got_file, 'r')
got_zip = ZipFile(got_file, "r")
except IOError:
# For Python 2.5+ compatibility.
e = sys.exc_info()[1]
error = "XlsxWriter file error: " + str(e)
return error, ''
return error, ""
except (BadZipfile, LargeZipFile):
e = sys.exc_info()[1]
error = "XlsxWriter zipfile error, '" + exp_file + "': " + str(e)
return error, ''
return error, ""
try:
# Open the Excel as a zip file for testing.
exp_zip = ZipFile(exp_file, 'r')
exp_zip = ZipFile(exp_file, "r")
except IOError:
e = sys.exc_info()[1]
error = "Excel file error: " + str(e)
return error, ''
return error, ""
except (BadZipfile, LargeZipFile):
e = sys.exc_info()[1]
error = "Excel zipfile error, '" + exp_file + "': " + str(e)
return error, ''
return error, ""
# Get the filenames from the zip files.
got_files = sorted(got_zip.namelist())
@ -146,57 +143,58 @@ def _compare_xlsx_files(got_file, exp_file, ignore_files, ignore_elements):
# Compare each file in the XLSX containers.
for filename in exp_files:
got_xml_str = got_zip.read(filename)
exp_xml_str = exp_zip.read(filename)
# Compare binary files with string comparison based on extension.
extension = os.path.splitext(filename)[1]
if extension in ('.png', '.jpeg', '.gif','.bmp', '.bin'):
if extension in (".png", ".jpeg", ".gif", ".bmp", ".wmf", ".emf", ".bin"):
if got_xml_str != exp_xml_str:
return 'got: %s' % filename, 'exp: %s' % filename
return f"got: {filename}", f"exp: {filename}"
continue
if sys.version_info >= (3, 0, 0):
got_xml_str = got_xml_str.decode('utf-8')
exp_xml_str = exp_xml_str.decode('utf-8')
got_xml_str = got_xml_str.decode("utf-8")
exp_xml_str = exp_xml_str.decode("utf-8")
# Check for errant xml tags in the generated file.
if "<<" in got_xml_str:
return f"Double start tag in XlsxWriter file {filename}", ""
# Remove dates and user specific data from the core.xml data.
if filename == 'docProps/core.xml':
exp_xml_str = re.sub(r' ?John', '', exp_xml_str)
exp_xml_str = re.sub(r'\d\d\d\d-\d\d-\d\dT\d\d\:\d\d:\d\dZ',
'', exp_xml_str)
got_xml_str = re.sub(r'\d\d\d\d-\d\d-\d\dT\d\d\:\d\d:\d\dZ',
'', got_xml_str)
if filename == "docProps/core.xml":
exp_xml_str = re.sub(r" ?John", "", exp_xml_str)
exp_xml_str = re.sub(
r"\d\d\d\d-\d\d-\d\dT\d\d\:\d\d:\d\dZ", "", exp_xml_str
)
got_xml_str = re.sub(
r"\d\d\d\d-\d\d-\d\dT\d\d\:\d\d:\d\dZ", "", got_xml_str
)
# Remove workbookView dimensions which are almost always different
# and calcPr which can have different Excel version ids.
if filename == 'xl/workbook.xml':
exp_xml_str = re.sub(r'<workbookView[^>]*>',
'<workbookView/>', exp_xml_str)
got_xml_str = re.sub(r'<workbookView[^>]*>',
'<workbookView/>', got_xml_str)
exp_xml_str = re.sub(r'<calcPr[^>]*>',
'<calcPr/>', exp_xml_str)
got_xml_str = re.sub(r'<calcPr[^>]*>',
'<calcPr/>', got_xml_str)
if filename == "xl/workbook.xml":
exp_xml_str = re.sub(r"<workbookView[^>]*>", "<workbookView/>", exp_xml_str)
got_xml_str = re.sub(r"<workbookView[^>]*>", "<workbookView/>", got_xml_str)
exp_xml_str = re.sub(r"<calcPr[^>]*>", "<calcPr/>", exp_xml_str)
got_xml_str = re.sub(r"<calcPr[^>]*>", "<calcPr/>", got_xml_str)
# Remove printer specific settings from Worksheet pageSetup elements.
if re.match(r'xl/worksheets/sheet\d.xml', filename):
exp_xml_str = re.sub(r'horizontalDpi="200" ', '', exp_xml_str)
exp_xml_str = re.sub(r'verticalDpi="200" ', '', exp_xml_str)
exp_xml_str = re.sub(r'(<pageSetup[^>]*) r:id="rId1"',
r'\1', exp_xml_str)
if re.match(r"xl/worksheets/sheet\d.xml", filename):
exp_xml_str = re.sub(r'horizontalDpi="200" ', "", exp_xml_str)
exp_xml_str = re.sub(r'verticalDpi="200" ', "", exp_xml_str)
exp_xml_str = re.sub(r'(<pageSetup[^>]*) r:id="rId1"', r"\1", exp_xml_str)
# Remove Chart pageMargin dimensions which are almost always different.
if re.match(r'xl/charts/chart\d.xml', filename):
exp_xml_str = re.sub(r'<c:pageMargins[^>]*>',
'<c:pageMargins/>', exp_xml_str)
got_xml_str = re.sub(r'<c:pageMargins[^>]*>',
'<c:pageMargins/>', got_xml_str)
if re.match(r"xl/charts/chart\d.xml", filename):
exp_xml_str = re.sub(
r"<c:pageMargins[^>]*>", "<c:pageMargins/>", exp_xml_str
)
got_xml_str = re.sub(
r"<c:pageMargins[^>]*>", "<c:pageMargins/>", got_xml_str
)
# Convert the XML string to lists for comparison.
if re.search('.vml$', filename):
if re.search(".vml$", filename):
got_xml = _xml_to_list(got_xml_str)
exp_xml = _vml_to_list(exp_xml_str)
else:
@ -212,10 +210,14 @@ def _compare_xlsx_files(got_file, exp_file, ignore_files, ignore_elements):
got_xml = [tag for tag in got_xml if not re.match(pattern, tag)]
# Reorder the XML elements in the XLSX relationship files.
if filename == '[Content_Types].xml' or re.search('.rels$', filename):
if filename == "[Content_Types].xml" or re.search(".rels$", filename):
got_xml = _sort_rel_file_data(got_xml)
exp_xml = _sort_rel_file_data(exp_xml)
# Indent the XML elements to make the visual comparison of failures easier.
got_xml = _indent_elements(got_xml)
exp_xml = _indent_elements(exp_xml)
# Compared the XML elements in each file.
if got_xml != exp_xml:
got_xml.insert(0, filename)
@ -223,4 +225,42 @@ def _compare_xlsx_files(got_file, exp_file, ignore_files, ignore_elements):
return got_xml, exp_xml
# If we got here the files are the same.
return 'Ok', 'Ok'
return "Ok", "Ok"
def compare_xlsx_files(file1, file2, ignore_files=None, ignore_elements=None):
"""
External wrapper function to allow simplified equality testing of two Excel
files. Note, this function doesn't test equivalence, only equality.
"""
if ignore_files is None:
ignore_files = []
if ignore_elements is None:
ignore_elements = []
got, exp = _compare_xlsx_files(file1, file2, ignore_files, ignore_elements)
return got == exp
# Indent XML elements to make the visual comparison of failures easier.
def _indent_elements(xml_elements):
indent_level = 0
indented_elements = []
for element in xml_elements:
if element.startswith("</"):
indent_level -= 1
indented_elements.append(" " * indent_level + element)
if (
not element.startswith("</")
and "</" not in element
and not element.endswith("/>")
):
indent_level += 1
return indented_elements

View File

@ -0,0 +1,51 @@
/*****************************************************************************
* Test cases for libxlsxwriter.
*
* Test to compare output against Excel files.
*
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org
*
*/
#include "xlsxwriter.h"
int main() {
lxw_workbook *workbook = workbook_new("test_chart_layout01.xlsx");
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
lxw_chart *chart = workbook_add_chart(workbook, LXW_CHART_COLUMN);
/* For testing, copy the randomly generated axis ids in the target file. */
chart->axis_id_1 = 69198592;
chart->axis_id_2 = 69200128;
uint8_t data[5][3] = {
{1, 2, 3},
{2, 4, 6},
{3, 6, 9},
{4, 8, 12},
{5, 10, 15}
};
int row, col;
for (row = 0; row < 5; row++)
for (col = 0; col < 3; col++)
worksheet_write_number(worksheet, row, col, data[row][col], NULL);
chart_add_series(chart, NULL, "=Sheet1!$A$1:$A$5");
chart_add_series(chart, NULL, "=Sheet1!$B$1:$B$5");
chart_add_series(chart, NULL, "=Sheet1!$C$1:$C$5");
lxw_chart_layout layout = {
.x = 0.13171062992125,
.y = 0.26436351706036,
.width = 0.73970734908136,
.height = 0.5713732137649,
};
chart_plotarea_set_layout(chart, &layout);
worksheet_insert_chart(worksheet, CELL("E9"), chart);
return workbook_close(workbook);
}

View File

@ -0,0 +1,51 @@
/*****************************************************************************
* Test cases for libxlsxwriter.
*
* Test to compare output against Excel files.
*
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org
*
*/
#include "xlsxwriter.h"
int main() {
lxw_workbook *workbook = workbook_new("test_chart_layout02.xlsx");
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
lxw_chart *chart = workbook_add_chart(workbook, LXW_CHART_COLUMN);
/* For testing, copy the randomly generated axis ids in the target file. */
chart->axis_id_1 = 68311296;
chart->axis_id_2 = 69198208;
uint8_t data[5][3] = {
{1, 2, 3},
{2, 4, 6},
{3, 6, 9},
{4, 8, 12},
{5, 10, 15}
};
int row, col;
for (row = 0; row < 5; row++)
for (col = 0; col < 3; col++)
worksheet_write_number(worksheet, row, col, data[row][col], NULL);
chart_add_series(chart, NULL, "=Sheet1!$A$1:$A$5");
chart_add_series(chart, NULL, "=Sheet1!$B$1:$B$5");
chart_add_series(chart, NULL, "=Sheet1!$C$1:$C$5");
lxw_chart_layout layout = {
.x = 0.80197353455818,
.y = 0.37442403032954,
.width = 0.12858202099737,
.height = 0.25115157480314,
};
chart_legend_set_layout(chart, &layout);
worksheet_insert_chart(worksheet, CELL("E9"), chart);
return workbook_close(workbook);
}

View File

@ -0,0 +1,52 @@
/*****************************************************************************
* Test cases for libxlsxwriter.
*
* Test to compare output against Excel files.
*
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org
*
*/
#include "xlsxwriter.h"
int main() {
lxw_workbook *workbook = workbook_new("test_chart_layout03.xlsx");
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
lxw_chart *chart = workbook_add_chart(workbook, LXW_CHART_COLUMN);
/* For testing, copy the randomly generated axis ids in the target file. */
chart->axis_id_1 = 68312064;
chart->axis_id_2 = 69198592;
uint8_t data[5][3] = {
{1, 2, 3},
{2, 4, 6},
{3, 6, 9},
{4, 8, 12},
{5, 10, 15}
};
int row, col;
for (row = 0; row < 5; row++)
for (col = 0; col < 3; col++)
worksheet_write_number(worksheet, row, col, data[row][col], NULL);
chart_add_series(chart, NULL, "=Sheet1!$A$1:$A$5");
chart_add_series(chart, NULL, "=Sheet1!$B$1:$B$5");
chart_add_series(chart, NULL, "=Sheet1!$C$1:$C$5");
lxw_chart_layout layout = {
.x = 0.80197353455818,
.y = 0.37442403032954,
.width = 0.12858202099737,
.height = 0.25115157480314,
};
chart_legend_set_layout(chart, &layout);
chart_legend_set_position(chart, LXW_CHART_LEGEND_OVERLAY_RIGHT);
worksheet_insert_chart(worksheet, CELL("E9"), chart);
return workbook_close(workbook);
}

View File

@ -0,0 +1,52 @@
/*****************************************************************************
* Test cases for libxlsxwriter.
*
* Test to compare output against Excel files.
*
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org
*
*/
#include "xlsxwriter.h"
int main() {
lxw_workbook *workbook = workbook_new("test_chart_layout04.xlsx");
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
lxw_chart *chart = workbook_add_chart(workbook, LXW_CHART_COLUMN);
/* For testing, copy the randomly generated axis ids in the target file. */
chart->axis_id_1 = 68311296;
chart->axis_id_2 = 69198208;
uint8_t data[5][3] = {
{1, 2, 3},
{2, 4, 6},
{3, 6, 9},
{4, 8, 12},
{5, 10, 15}
};
int row, col;
for (row = 0; row < 5; row++)
for (col = 0; col < 3; col++)
worksheet_write_number(worksheet, row, col, data[row][col], NULL);
chart_add_series(chart, NULL, "=Sheet1!$A$1:$A$5");
chart_add_series(chart, NULL, "=Sheet1!$B$1:$B$5");
chart_add_series(chart, NULL, "=Sheet1!$C$1:$C$5");
lxw_chart_layout layout = {
.x = 0.426319335083114,
.y = 0.143518518518518,
};
chart_title_set_layout(chart, &layout);
chart_title_set_name(chart, "Title");
worksheet_insert_chart(worksheet, CELL("E9"), chart);
return workbook_close(workbook);
}

View File

@ -0,0 +1,27 @@
###############################################################################
#
# Tests for libxlsxwriter.
#
# SPDX-License-Identifier: BSD-2-Clause
# Copyright 2014-2025, John McNamara, jmcnamara@cpan.org.
#
import base_test_class
class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
"""
Test file created with libxlsxwriter against a file created by Excel.
"""
def test_chart_layout01(self):
self.run_exe_test('test_chart_layout01')
def test_chart_layout02(self):
self.run_exe_test('test_chart_layout02')
def test_chart_layout03(self):
self.run_exe_test('test_chart_layout03')
def test_chart_layout04(self):
self.run_exe_test('test_chart_layout04')

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.