mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Added type check to error bar functions.
This commit is contained in:
parent
ec6bc94095
commit
29d52da15b
10
src/chart.c
10
src/chart.c
@ -464,6 +464,16 @@ _chart_axis_set_default_num_format(lxw_chart_axis *axis, char *num_format)
|
||||
lxw_error
|
||||
_chart_check_error_bars(lxw_series_error_bars *error_bars, char *property)
|
||||
{
|
||||
/* Check that the error bar type has been set for all error bar
|
||||
* functions except the one that is used to set the type. */
|
||||
if (strlen(property) && !error_bars->is_set) {
|
||||
LXW_WARN_FORMAT1("chart_series_set_error_bars%s(): "
|
||||
"error bar type must be set first using "
|
||||
"chart_series_set_error_bars()", property);
|
||||
|
||||
return LXW_ERROR_PARAMETER_VALIDATION;
|
||||
}
|
||||
|
||||
if (error_bars->is_x) {
|
||||
if (error_bars->chart_group != LXW_CHART_SCATTER
|
||||
&& error_bars->chart_group != LXW_CHART_BAR) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user