We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87195a4 commit 8680856Copy full SHA for 8680856
CHANGELOG.md
@@ -11,6 +11,7 @@
11
*Fixes*
12
13
* Fixing `xan to (md|html) --no-headers`.
14
+* Fixing `xan plot -R/--regression-line`.
15
16
*Quality of Life*
17
src/cmd/plot.rs
@@ -397,7 +397,7 @@ pub fn run(argv: &[&str]) -> CliResult<()> {
397
Err("-R/--regression-line does not work with -B/--bars nor -L/--line!")?;
398
}
399
400
- if args.flag_category.is_some() || !has_added_series {
+ if args.flag_category.is_some() || has_added_series {
401
Err("-R/--regression-line only works with single series (e.g. when using -c/--category or when selecting multiple columns with <y>)!")?;
402
403
0 commit comments