mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Added docs for chart series smoothing.
This commit is contained in:
parent
a128d70074
commit
f8c74ac0cd
BIN
docs/images/chart_smooth.png
Normal file
BIN
docs/images/chart_smooth.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
@ -1334,6 +1334,24 @@ void chart_series_set_marker_pattern(lxw_chart_series *series,
|
||||
lxw_error chart_series_set_points(lxw_chart_series *series,
|
||||
lxw_chart_point *points[]);
|
||||
|
||||
/**
|
||||
* @brief Smooth a line or scatter chart series.
|
||||
*
|
||||
* @param series A series object created via `chart_add_series()`.
|
||||
* @param smooth Turn off/on the line smoothing. (0/1)
|
||||
*
|
||||
* The `chart_series_set_smooth()` function is used to set the smooth property
|
||||
* of a line series. It is only applicable to the line and scatter chart
|
||||
* types:
|
||||
*
|
||||
* @code
|
||||
* chart_series_set_smooth(series2, LXW_TRUE);
|
||||
* @endcode
|
||||
*
|
||||
* @image html chart_smooth.png
|
||||
*
|
||||
*
|
||||
*/
|
||||
void chart_series_set_smooth(lxw_chart_series *series, uint8_t smooth);
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user