mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Add docs for chart legend.
This commit is contained in:
parent
4082bacd79
commit
915cc66c45
Binary file not shown.
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 57 KiB |
BIN
docs/images/chart_legend_bottom.png
Normal file
BIN
docs/images/chart_legend_bottom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
BIN
docs/images/chart_legend_delete.png
Normal file
BIN
docs/images/chart_legend_delete.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
BIN
docs/images/chart_legend_none.png
Normal file
BIN
docs/images/chart_legend_none.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
BIN
docs/images/chart_legend_set_font.png
Normal file
BIN
docs/images/chart_legend_set_font.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
@ -95,31 +95,10 @@ HTML style RGB color, See @ref working_with_colors :
|
||||
|
||||
Here is a longer example of several chart formats:
|
||||
|
||||
@code
|
||||
// Create some fonts to use in the chart.
|
||||
lxw_chart_font font1 = {.name = "Calibri", .color = LXW_COLOR_BLUE};
|
||||
lxw_chart_font font2 = {.name = "Courier", .color = 0x92D050};
|
||||
lxw_chart_font font3 = {.name = "Arial", .color = 0x00B0F0};
|
||||
lxw_chart_font font4 = {.name = "Century", .color = LXW_COLOR_RED};
|
||||
lxw_chart_font font5 = {.bold = LXW_TRUE,
|
||||
.italic = LXW_TRUE,
|
||||
.underline = LXW_TRUE,
|
||||
.color = 0x7030A0};
|
||||
|
||||
// Write the chart title with a font.
|
||||
chart_title_set_name(chart, "Test Results");
|
||||
chart_title_set_name_font(chart, &font1);
|
||||
|
||||
// Write the X axis with a font.
|
||||
chart_axis_set_name(chart->x_axis, "Month");
|
||||
chart_axis_set_name_font(chart->x_axis, &font2);
|
||||
chart_axis_set_num_font(chart->x_axis, &font3);
|
||||
|
||||
// Write the Y axis with a font.
|
||||
chart_axis_set_name(chart->y_axis, "Units");
|
||||
chart_axis_set_name_font(chart->y_axis, &font4);
|
||||
chart_axis_set_num_font(chart->y_axis, &font5);
|
||||
@endcode
|
||||
@dontinclude chart_fonts.c
|
||||
@skip lxw_chart_font
|
||||
@until chart_legend_set_font
|
||||
|
||||
@image html chart_fonts.png
|
||||
|
||||
|
@ -50,7 +50,8 @@ int main() {
|
||||
lxw_chart_font font2 = {.name = "Courier", .color = 0x92D050};
|
||||
lxw_chart_font font3 = {.name = "Arial", .color = 0x00B0F0};
|
||||
lxw_chart_font font4 = {.name = "Century", .color = LXW_COLOR_RED};
|
||||
lxw_chart_font font5 = {.bold = LXW_TRUE,
|
||||
lxw_chart_font font5 = {.rotation = -30};
|
||||
lxw_chart_font font6 = {.bold = LXW_TRUE,
|
||||
.italic = LXW_TRUE,
|
||||
.underline = LXW_TRUE,
|
||||
.color = 0x7030A0};
|
||||
@ -59,15 +60,20 @@ int main() {
|
||||
chart_title_set_name(chart, "Test Results");
|
||||
chart_title_set_name_font(chart, &font1);
|
||||
|
||||
/* Write the X axis with a font. */
|
||||
chart_axis_set_name(chart->x_axis, "Month");
|
||||
chart_axis_set_name_font(chart->x_axis, &font2);
|
||||
chart_axis_set_num_font(chart->x_axis, &font3);
|
||||
|
||||
/* Write the Y axis with a font. */
|
||||
chart_axis_set_name(chart->y_axis, "Units");
|
||||
chart_axis_set_name_font(chart->y_axis, &font4);
|
||||
chart_axis_set_num_font(chart->y_axis, &font5);
|
||||
chart_axis_set_name_font(chart->y_axis, &font2);
|
||||
chart_axis_set_num_font(chart->y_axis, &font3);
|
||||
|
||||
/* Write the X axis with a font. */
|
||||
chart_axis_set_name(chart->x_axis, "Month");
|
||||
chart_axis_set_name_font(chart->x_axis, &font4);
|
||||
chart_axis_set_num_font(chart->x_axis, &font5);
|
||||
|
||||
|
||||
/* Display the chart legend at the bottom of the chart. */
|
||||
chart_legend_set_position(chart, LXW_CHART_LEGEND_BOTTOM);
|
||||
chart_legend_set_font(chart, &font6);
|
||||
|
||||
/* Insert the chart into the worksheet. */
|
||||
worksheet_insert_chart(worksheet, CELL("E9"), chart);
|
||||
|
@ -83,7 +83,7 @@ STAILQ_HEAD(lxw_series_data_points, lxw_series_data_point);
|
||||
#define LXW_CHART_NUM_FORMAT_LEN 128
|
||||
|
||||
/** Available chart types . */
|
||||
typedef enum lxw_chart_types {
|
||||
typedef enum lxw_chart_type {
|
||||
|
||||
/** None. */
|
||||
LXW_CHART_NONE = 0,
|
||||
@ -147,10 +147,10 @@ typedef enum lxw_chart_types {
|
||||
|
||||
/** Radar chart - filled. */
|
||||
LXW_CHART_RADAR_FILLED
|
||||
} lxw_chart_types;
|
||||
} lxw_chart_type;
|
||||
|
||||
/** Chart legend positions. */
|
||||
typedef enum lxw_chart_legend_postions {
|
||||
typedef enum lxw_chart_legend_position {
|
||||
|
||||
/** No chart legend. */
|
||||
LXW_CHART_LEGEND_NONE = 0,
|
||||
@ -172,32 +172,32 @@ typedef enum lxw_chart_legend_postions {
|
||||
|
||||
/** Chart legend overlaid at left side. */
|
||||
LXW_CHART_LEGEND_OVERLAY_LEFT
|
||||
} lxw_chart_legend_postions;
|
||||
} lxw_chart_legend_position;
|
||||
|
||||
enum lxw_chart_subtypes {
|
||||
enum lxw_chart_subtype {
|
||||
|
||||
LXW_CHART_SUBTYPE_NONE = 0,
|
||||
LXW_CHART_SUBTYPE_STACKED,
|
||||
LXW_CHART_SUBTYPE_STACKED_PERCENT
|
||||
};
|
||||
|
||||
enum lxw_chart_groupings {
|
||||
enum lxw_chart_grouping {
|
||||
LXW_GROUPING_CLUSTERED,
|
||||
LXW_GROUPING_STANDARD,
|
||||
LXW_GROUPING_PERCENTSTACKED,
|
||||
LXW_GROUPING_STACKED
|
||||
};
|
||||
|
||||
enum lxw_chart_axis_positions {
|
||||
enum lxw_chart_axis_tick_position {
|
||||
LXW_CHART_AXIS_POSITION_BETWEEN,
|
||||
LXW_CHART_AXIS_POSITION_ON_TICK
|
||||
};
|
||||
|
||||
enum lxw_chart_positions {
|
||||
LXW_CHART_RIGHT,
|
||||
LXW_CHART_LEFT,
|
||||
LXW_CHART_TOP,
|
||||
LXW_CHART_BOTTOM
|
||||
enum lxw_chart_position {
|
||||
LXW_CHART_AXIS_RIGHT,
|
||||
LXW_CHART_AXIS_LEFT,
|
||||
LXW_CHART_AXIS_TOP,
|
||||
LXW_CHART_AXIS_BOTTOM
|
||||
};
|
||||
|
||||
typedef struct lxw_series_range {
|
||||
@ -690,7 +690,7 @@ void chart_axis_set_name_font(lxw_chart_axis *axis, lxw_chart_font *font);
|
||||
* @code
|
||||
* lxw_chart_font font = {.bold = LXW_TRUE, .color = LXW_COLOR_BLUE};
|
||||
*
|
||||
* chart_axis_set_num_font(chart->x_axis, &font1;
|
||||
* chart_axis_set_num_font(chart->x_axis, &font1);
|
||||
* @endcode
|
||||
*
|
||||
* @image html chart_axis_set_num_font.png
|
||||
@ -786,10 +786,88 @@ void chart_title_set_name_font(lxw_chart *chart, lxw_chart_font *font);
|
||||
*/
|
||||
void chart_title_off(lxw_chart *chart);
|
||||
|
||||
/**
|
||||
* @brief Set the position of the chart legend.
|
||||
*
|
||||
* @param chart Pointer to a lxw_chart instance to be configured.
|
||||
* @param position The #lxw_chart_legend_position value for the legend.
|
||||
*
|
||||
* The `%chart_legend_set_position()` function is used to set the chart
|
||||
* legend to one of the #lxw_chart_legend_position values:
|
||||
*
|
||||
* LXW_CHART_LEGEND_NONE
|
||||
* LXW_CHART_LEGEND_RIGHT
|
||||
* LXW_CHART_LEGEND_LEFT
|
||||
* LXW_CHART_LEGEND_TOP
|
||||
* LXW_CHART_LEGEND_BOTTOM
|
||||
* LXW_CHART_LEGEND_OVERLAY_RIGHT
|
||||
* LXW_CHART_LEGEND_OVERLAY_LEFT
|
||||
*
|
||||
* For example:
|
||||
*
|
||||
* @code
|
||||
* chart_legend_set_position(chart, LXW_CHART_LEGEND_BOTTOM);
|
||||
* @endcode
|
||||
*
|
||||
* @image html chart_legend_bottom.png
|
||||
*
|
||||
* This function can also be used to turn off a chart legend:
|
||||
*
|
||||
* @code
|
||||
* chart_legend_set_position(chart, LXW_CHART_LEGEND_NONE);
|
||||
* @endcode
|
||||
*
|
||||
* @image html chart_legend_none.png
|
||||
*
|
||||
*/
|
||||
void chart_legend_set_position(lxw_chart *chart, uint8_t position);
|
||||
|
||||
/**
|
||||
* @brief Set the font properties for a chart legend.
|
||||
*
|
||||
* @param chart Pointer to a lxw_chart instance to be configured.
|
||||
* @param font A pointer to a chart #lxw_chart_font font struct.
|
||||
*
|
||||
* The `%chart_legend_set_font()` function is used to set the font of a
|
||||
* chart legend:
|
||||
*
|
||||
* @code
|
||||
* lxw_chart_font font = {.bold = LXW_TRUE, .color = LXW_COLOR_BLUE};
|
||||
*
|
||||
* chart_legend_set_font(chart, &font);
|
||||
* @endcode
|
||||
*
|
||||
* @image html chart_legend_set_font.png
|
||||
*
|
||||
* For more information see @ref chart_fonts.
|
||||
*/
|
||||
void chart_legend_set_font(lxw_chart *chart, lxw_chart_font *font);
|
||||
|
||||
/**
|
||||
* @brief Remove one or more series from the the legend.
|
||||
*
|
||||
* @param chart Pointer to a lxw_chart instance to be configured.
|
||||
* @param delete_series An array of zero-indexed values to delete from series.
|
||||
*
|
||||
* @return A #lxw_error.
|
||||
*
|
||||
* The `%chart_legend_delete_series()` function allows you to remove/hide one
|
||||
* or more series in a chart legend (the series will still display on the chart).
|
||||
*
|
||||
* This function takes an array of one or more zero indexed series
|
||||
* numbers. The array should be terminated with -1.
|
||||
*
|
||||
* For example to remove the first and third zero-indexed series from the
|
||||
* legend of a chart with 3 series:
|
||||
*
|
||||
* @code
|
||||
* int16_t series[] = {0, 2, -1};
|
||||
*
|
||||
* chart_legend_delete_series(chart, series);
|
||||
* @endcode
|
||||
*
|
||||
* @image html chart_legend_delete.png
|
||||
*/
|
||||
lxw_error chart_legend_delete_series(lxw_chart *chart,
|
||||
int16_t delete_series[]);
|
||||
|
||||
|
@ -381,7 +381,7 @@ lxw_format *workbook_add_format(lxw_workbook *workbook);
|
||||
* @brief Create a new chart to be added to a worksheet:
|
||||
*
|
||||
* @param workbook Pointer to a lxw_workbook instance.
|
||||
* @param chart_type The type of chart to be created. See #lxw_chart_types.
|
||||
* @param chart_type The type of chart to be created. See #lxw_chart_type.
|
||||
*
|
||||
* @return A lxw_chart object.
|
||||
*
|
||||
@ -401,7 +401,7 @@ lxw_format *workbook_add_format(lxw_workbook *workbook);
|
||||
* worksheet_insert_chart(worksheet, CELL("B7"), chart);
|
||||
* @endcode
|
||||
*
|
||||
* The available chart types are defined in #lxw_chart_types. The types of
|
||||
* The available chart types are defined in #lxw_chart_type. The types of
|
||||
* charts that are supported are:
|
||||
*
|
||||
* | Chart type | Description |
|
||||
|
16
src/chart.c
16
src/chart.c
@ -187,8 +187,8 @@ lxw_chart_new(uint8_t type)
|
||||
chart->hole_size = 50;
|
||||
|
||||
/* Set the default axis positions. */
|
||||
chart->cat_axis_position = LXW_CHART_BOTTOM;
|
||||
chart->val_axis_position = LXW_CHART_LEFT;
|
||||
chart->cat_axis_position = LXW_CHART_AXIS_BOTTOM;
|
||||
chart->val_axis_position = LXW_CHART_AXIS_LEFT;
|
||||
|
||||
lxw_strcpy(chart->x_axis->default_num_format, "General");
|
||||
lxw_strcpy(chart->y_axis->default_num_format, "General");
|
||||
@ -1725,13 +1725,13 @@ _chart_write_axis_pos(lxw_chart *self, uint8_t position)
|
||||
|
||||
LXW_INIT_ATTRIBUTES();
|
||||
|
||||
if (position == LXW_CHART_RIGHT)
|
||||
if (position == LXW_CHART_AXIS_RIGHT)
|
||||
LXW_PUSH_ATTRIBUTES_STR("val", "r");
|
||||
else if (position == LXW_CHART_LEFT)
|
||||
else if (position == LXW_CHART_AXIS_LEFT)
|
||||
LXW_PUSH_ATTRIBUTES_STR("val", "l");
|
||||
else if (position == LXW_CHART_TOP)
|
||||
else if (position == LXW_CHART_AXIS_TOP)
|
||||
LXW_PUSH_ATTRIBUTES_STR("val", "t");
|
||||
else if (position == LXW_CHART_BOTTOM)
|
||||
else if (position == LXW_CHART_AXIS_BOTTOM)
|
||||
LXW_PUSH_ATTRIBUTES_STR("val", "b");
|
||||
|
||||
lxw_xml_empty_tag(self->file, "c:axPos", &attributes);
|
||||
@ -2686,8 +2686,8 @@ _chart_initialize_bar_chart(lxw_chart *self, uint8_t type)
|
||||
}
|
||||
|
||||
/* Override the default axis positions for a bar chart. */
|
||||
self->cat_axis_position = LXW_CHART_LEFT;
|
||||
self->val_axis_position = LXW_CHART_BOTTOM;
|
||||
self->cat_axis_position = LXW_CHART_AXIS_LEFT;
|
||||
self->val_axis_position = LXW_CHART_AXIS_BOTTOM;
|
||||
|
||||
/* Initialize the function pointers for this chart type. */
|
||||
self->write_chart_type = _chart_write_bar_chart;
|
||||
|
Loading…
x
Reference in New Issue
Block a user