If the scatter chart renderer is called with the default value #f for markercolor it will crash at line 145 (markercolor (string-append "#" (gnc:html-scatter-markercolor scatter))) ERROR: In procedure string-append: Wrong type (expecting string): #f Proposal: In html-scatter.scm replace (define (gnc:make-html-scatter) (gnc:make-html-scatter-internal '(pixels . -1) '(pixels . -1) #f #f #f #f '() #f #f)) with (define (gnc:make-html-scatter) (gnc:make-html-scatter-internal '(pixels . -1) '(pixels . -1) #f #f #f #f '() #f "ffffff"))
Covered by PR#404 https://github.com/Gnucash/gnucash/pull/404