If the pie chart renderer is called with the default value #f for colors it will crash at line 202 (map (lambda (color) (string-append "\"" color "\"")) (gnc:html-piechart-colors piechart)) Proposal: In html-piechart.scm replace (define (gnc:make-html-piechart) (gnc:make-html-piechart-internal '(pixels . -1) '(pixels . -1) #f #f #f #f #f #f #f #f #f #f #f)) with (define (gnc:make-html-piechart) (gnc:make-html-piechart-internal '(pixels . -1) '(pixels . -1) #f #f #f '() #f #f #f #f #f #f #f))
Covered by PR#404 https://github.com/Gnucash/gnucash/pull/404