Skip to content
Snippets Groups Projects
Commit 68cc6d6c authored by Simon Belak's avatar Simon Belak
Browse files

More consistent series names

parent 9bbdb768
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
[medley.core :as m]
[metabase.api.common :as api]
[metabase.automagic-dashboards
[core :refer [->root ->field automagic-analysis ->related-entity cell-title source-name capitalize-first encode-base64-json]]
[core :refer [->root ->field automagic-analysis ->related-entity cell-title source-name capitalize-first encode-base64-json metric-name]]
[filters :as filters]
[populate :as populate]]
[metabase.models
......@@ -151,10 +151,8 @@
(defn- series-labels
[card]
(get-in card [:visualization_settings :graph.series_labels]
(for [[op & args] (qp.util/get-in-normalized card [:dataset_query :query :aggregation])]
(if (= (qp.util/normalize-token op) :metric)
(-> args first Metric :name)
(-> op name str/capitalize)))))
(map (comp capitalize-first metric-name)
(qp.util/get-in-normalized card [:dataset_query :query :aggregation]))))
(defn- unroll-multiseries
[card]
......
......@@ -83,7 +83,8 @@
(def ^:private ^{:arglists '([metric])} adhoc-metric?
(complement (some-fn saved-metric? custom-expression?)))
(defn- metric-name
(defn metric-name
"Return the name of the metric or name by describing it."
[[op & args :as metric]]
(cond
(qp.expand/ga-metric? metric) (-> args first str (subs 3) str/capitalize)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment