mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/scm/report/account-summary.scm: fix bug. * src/scm/html-document.scm: added handler for scatter plots. * src/scm/report/price-scatter.scm: Added file. This eventually should show prices over time. ATM it demonstrates scatter plots in a meaningless report. * src/scm/html-scatter.scm: Added file. Provides scatter plots for reports. * src/scm/options.scm (gnc:color->hex-string): added function. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4109 57a11ea4-9604-0410-9ed3-97b8803252fd
33 lines
993 B
Scheme
33 lines
993 B
Scheme
;; Index file to load all of the releavant reports.
|
|
(gnc:support "report/report-list.scm")
|
|
|
|
;; Helper functions for reports (which haven't been included
|
|
;; elsewhere)
|
|
(gnc:depend "options-utilities.scm")
|
|
|
|
;; reports
|
|
(gnc:depend "report/net-barchart.scm")
|
|
(gnc:depend "report/account-summary.scm")
|
|
(gnc:depend "report/average-balance.scm")
|
|
(gnc:depend "report/balance-sheet.scm")
|
|
(gnc:depend "report/account-piecharts.scm")
|
|
(gnc:depend "report/category-barchart.scm")
|
|
(gnc:depend "report/pnl.scm")
|
|
(gnc:depend "report/hello-world.scm")
|
|
(gnc:depend "report/portfolio.scm")
|
|
(gnc:depend "report/price-scatter.scm")
|
|
(gnc:depend "report/register.scm")
|
|
(gnc:depend "report/iframe-url.scm")
|
|
(gnc:depend "report/taxtxf.scm")
|
|
(gnc:depend "report/transaction-report.scm")
|
|
|
|
;; style sheets
|
|
(gnc:depend "report/stylesheet-plain.scm")
|
|
(gnc:depend "report/stylesheet-fancy.scm")
|
|
|
|
;; view templates
|
|
(gnc:depend "report/view-column.scm")
|
|
|
|
;; welcome to gnucash
|
|
(gnc:depend "report/welcome-to-gnucash.scm")
|