mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 06:06:09 -06:00
[GH-ISSUE #136] Feature request: add defined error bars #111
Labels
No labels
awaiting user feedback
bug
cmake
cmake
docs
feature request
in progress
long term
medium term
medium term
pull-request
question
question
ready to close
short term
under investigation
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/libxlsxwriter#111
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Nipou on GitHub (Nov 10, 2017).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/136
Originally assigned to: @jmcnamara on GitHub.
The error in science is often different for each measure, so it would be really convenient to be able to define the range of data for the error bars.
So a new type : LXW_CHART_ERROR_BAR_TYPE_DEFINED
And an API void chart_series_set_error_bars_range(lxw_series_error_bars *error_bars, const char *sheetname, lxw_row_t row, lxw_col_t col);
The corresponding XML is simply:
<c:errBars>
<c:errBarType val="plus"/>
<c:errValType val="cust"/>
<c:plus>
<c:numRef>...</c:numRef>
</c:plus>
...
@jmcnamara commented on GitHub (Nov 17, 2017):
For clarity, where is set in the Excel interface. Is this a custom value?
For reference, here is the Python interface which supports custom values: Is that what you are looking for.
@Nipou commented on GitHub (Nov 17, 2017):
Yes, see the attachment.
@jmcnamara commented on GitHub (Nov 17, 2017):
@Nipou Attachments are stripped from emails to GitHub. You will have to add it via the web interface. Or else just confirm that you are looking for support of custom values, like the Python API.
@Nipou commented on GitHub (Nov 20, 2017):
Yes, it's custum values like the Python API.
@Nipou commented on GitHub (Nov 30, 2017):