mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Added extra chart font axis test.
This commit is contained in:
parent
063f702593
commit
019c8badc2
52
test/functional/src/test_chart_axis48.c
Normal file
52
test/functional/src/test_chart_axis48.c
Normal file
@ -0,0 +1,52 @@
|
||||
/*****************************************************************************
|
||||
* 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_chart_axis48.xlsx");
|
||||
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
|
||||
lxw_chart *chart = workbook_add_chart(workbook, LXW_CHART_LINE);
|
||||
|
||||
/* For testing, copy the randomly generated axis ids in the target file. */
|
||||
chart->axis_id_1 = 84517632;
|
||||
chart->axis_id_2 = 106222720;
|
||||
|
||||
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);
|
||||
|
||||
worksheet_write_string(worksheet, CELL("D1"), "Foo" , 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_font font1 = {.rotation = 360, .baseline = -1};
|
||||
|
||||
chart_axis_set_name(chart->x_axis, "XXX");
|
||||
chart_axis_set_name_font(chart->x_axis, &font1);
|
||||
|
||||
chart_axis_set_name(chart->y_axis, "=Sheet1!$D$1");
|
||||
chart_axis_set_name_font(chart->y_axis, &font1);
|
||||
|
||||
worksheet_insert_chart(worksheet, CELL("E9"), chart);
|
||||
|
||||
return workbook_close(workbook);
|
||||
}
|
@ -148,3 +148,6 @@ class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
|
||||
|
||||
def test_chart_axis47(self):
|
||||
self.run_exe_test('test_chart_axis47')
|
||||
|
||||
def test_chart_axis48(self):
|
||||
self.run_exe_test('test_chart_axis48')
|
||||
|
BIN
test/functional/xlsx_files/chart_axis48.xlsx
Normal file
BIN
test/functional/xlsx_files/chart_axis48.xlsx
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user