-
-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor chart axis label alignment.
Issue #186
- Loading branch information
Showing
6 changed files
with
75 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/***************************************************************************** | ||
* Test cases for libxlsxwriter. | ||
* | ||
* Test to compare output against Excel files. | ||
* | ||
* Copyright 2014-2018, John McNamara, [email protected] | ||
* | ||
*/ | ||
|
||
#include "xlsxwriter.h" | ||
|
||
int main() { | ||
|
||
lxw_workbook *workbook = new_workbook("test_chart_axis43.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 = 61296640; | ||
chart->axis_id_2 = 61298560; | ||
|
||
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"); | ||
|
||
chart_axis_set_label_align(chart->x_axis, LXW_CHART_AXIS_LABEL_ALIGN_RIGHT); | ||
|
||
worksheet_insert_chart(worksheet, CELL("E9"), chart); | ||
|
||
return workbook_close(workbook); | ||
} |
Binary file not shown.
Binary file not shown.