Function: chart-draw-title
chart-draw-title is a byte-compiled function defined in chart.el.gz.
Signature
(chart-draw-title ARG &rest ARGS)
Implementations
((c chart)) in `chart.el'.
Draw a title upon the chart. Argument C is the chart object.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/chart.el.gz
(cl-defmethod chart-draw-title ((c chart))
"Draw a title upon the chart.
Argument C is the chart object."
(chart-display-label (oref c title) 'horizontal 0 0 (window-width)
(oref c title-face)))