Skip to content

Commit

Permalink
Fix error-key type documentation (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes-wolf authored Oct 25, 2024
2 parents 6aea651 + ce2a9a5 commit 20f2212
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Binary file modified manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/chart/barchart.typ
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
/// - value-key (int,string): Key(s) to access values of a data row.
/// These keys are used as argument to the
/// rows `.at(..)` function.
/// - error-key (none,int,string): Key(s) to access error values of a data row.
/// - error-key (none,int,string,array): Key(s) to access error values of a data row.
/// These keys are used as argument to the
/// rows `.at(..)` function.
/// - mode (string): Chart mode:
Expand Down
5 changes: 2 additions & 3 deletions src/chart/columnchart.typ
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@
/// - value-key (int,string): Key(s) to access value(s) of data row.
/// These keys are used as argument to the
/// rows `.at(..)` function.
/// - error-key (none,int,string): Key(s) to access error values of a data row.
/// These keys are used as argument to the
/// rows `.at(..)` function.
/// - error-key (none,int,string,array): Key(s) to access error values of a data row.
/// These keys are used as argument to the rows `.at(..)` function.
/// - mode (string): Chart mode:
/// / basic: Single bar per data row
/// / clustered: Group of bars per data row
Expand Down
2 changes: 1 addition & 1 deletion src/plot/bar.typ
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
/// - y-key: (auto,int,string,array): Key to use for retrieving a bars y-value. For clustered/stacked
/// data, this must be set to a list of keys (e.g. `range(1, 4)`). If set to `auto`, att but the first
/// array-values of a data item are used as y-values.
/// - error-key: (none,int,string): Key to use for retrieving a bars y-error.
/// - error-key: (none,int,string,array): Key(s) to use for retrieving a bars y-error.
/// - mode (string): The mode on how to group data items into bars:
/// / basic: Add one bar per data value. If the data contains multiple values,
/// group those bars next to each other.
Expand Down

0 comments on commit 20f2212

Please sign in to comment.