diff --git a/manual.pdf b/manual.pdf index d4fc863..21369bf 100644 Binary files a/manual.pdf and b/manual.pdf differ diff --git a/src/chart/barchart.typ b/src/chart/barchart.typ index 441eeec..4d223d0 100644 --- a/src/chart/barchart.typ +++ b/src/chart/barchart.typ @@ -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: diff --git a/src/chart/columnchart.typ b/src/chart/columnchart.typ index 0ab65ad..040c364 100644 --- a/src/chart/columnchart.typ +++ b/src/chart/columnchart.typ @@ -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 diff --git a/src/plot/bar.typ b/src/plot/bar.typ index bacd268..22187a0 100644 --- a/src/plot/bar.typ +++ b/src/plot/bar.typ @@ -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.