@brief Set a chart axis name formula using row and column values.
@param axis A pointer to a chart #lxw_chart_axis object.
@param sheetname The name of the worksheet that contains the cell range.
@param row The zero indexed row number of the range.
@param col The zero indexed column number of the range.
The %chart_axis_set_name_range() function can be used to set an axis name
range and is an alternative to using chart_axis_set_name() and a string
formula:
@brief Set a chart axis name formula using row and column values.
@param axis A pointer to a chart #lxw_chart_axis object. @param sheetname The name of the worksheet that contains the cell range. @param row The zero indexed row number of the range. @param col The zero indexed column number of the range.
The %chart_axis_set_name_range() function can be used to set an axis name range and is an alternative to using chart_axis_set_name() and a string formula:
@code chart_axis_set_name_range(chart->x_axis, "Sheet1", 1, 0); chart_axis_set_name_range(chart->y_axis, "Sheet1", 2, 0); @endcode