emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 7dd667a 1/2: org-plot: Use labels with 2d histogram


From: ELPA Syncer
Subject: [elpa] externals/org 7dd667a 1/2: org-plot: Use labels with 2d histogram plot
Date: Sun, 9 May 2021 11:57:12 -0400 (EDT)

branch: externals/org
commit 7dd667af6751e7f0926ad123cbd4042b9e49f8f9
Author: TEC <tec@tecosaur.com>
Commit: TEC <tec@tecosaur.com>

    org-plot: Use labels with 2d histogram plot
    
    * lisp/org-plot.el (org-plot/preset-plot-types): When the :with
    parameter is histograms, use text indices as the x-values.
---
 lisp/org-plot.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/org-plot.el b/lisp/org-plot.el
index 2659a5f..ddd9f78 100644
--- a/lisp/org-plot.el
+++ b/lisp/org-plot.el
@@ -309,7 +309,8 @@ the argument, and must return a string to be used."
                 (with (if (eq type 'grid) 'pm3d (plist-get params :with)))
                 (ind (plist-get params :ind))
                 (deps (if (plist-member params :deps) (plist-get params 
:deps)))
-                (text-ind (plist-get params :textind))
+                (text-ind (or (plist-get params :textind)
+                               (eq (plist-get params :with) 'histograms)))
                 (col-labels (plist-get params :labels))
                 res)
            (dotimes (col num-cols res)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]