Bill Gribble's patch to add guppi support, improve the report & help

windows, and sundry other things.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3329 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas
2000-12-21 00:35:47 +00:00
parent ae931d0aac
commit 155391c80c
46 changed files with 4029 additions and 3266 deletions

View File

@@ -0,0 +1,32 @@
<html>
<head>
<title>Guppi Bar Chart Demo</title>
</head>
<body>
<h2>Guppi Bar Chart Demo</h2>
<p>Live Guppi bar charts can now be embedded in any HTML viewed in
Gnucash. This demo doesn't do much but it's possible to add callbacks
to mouse clicks on the graph or the legend.
<p>
<object classid="gnc-guppi-bar" width=400 height=400>
<param name=title value="Bar chart of stupid data">
<param name=subtitle value="NEW! with subtitle">
<param name=data_rows value=6>
<param name=data_cols value=2>
<param name=data
value="100 200 400 800 1600 3200 150 250 450 850 1650 3250">
<param name=row_labels
value="teeny tiny small medium large huge">
<param name=col_labels
value="Texas Florida">
<param name=col_colors
value="red blue">
</object>
<p>and this one.
</body>

View File

@@ -0,0 +1,29 @@
<html>
<head>
<title>Guppi Pie Chart Demo</title>
</head>
<body>
<h2>Guppi Pie Chart Demo</h2>
<p>Live Guppi pie charts can be directly embedded in any HTML that is
displayed withing Gnucash, including reports. The left mouse button
lets you move pie slices around, and the right button lets you rotate
the whole pie.
<p>
<object classid="gnc-guppi-pie" width=400 height=400>
<param name=title value="Pie chart of stupid data">
<param name=subtitle value="NEW! with subtitle">
<param name=datasize value=6>
<param name=data
value="100 200 400 800 1600 3200">
<param name=labels
value="teeny tiny small medium large huge">
<param name=colors
value="red blue orange green purple goldenrod">
THIS IS ALT TEXT
</object>
</body>

View File

@@ -0,0 +1,29 @@
<html>
<head>
<title>Guppi Scatter Chart Demo</title>
</head>
<body>
<h2>Guppi Scatter Chart Demo</h2>
<p>Gnucash can't do Guppi line graphs just yet, but we can do scatter
charts. The left mouse button zooms in, the right button zooms out,
and the middle button lets you drag the viewport around.
<p>
<object classid="gnc-guppi-scatter" width=400 height=400>
<param name=title value="Scatter chart of stupid data">
<param name=datasize value=6>
<param name=x_data
value="100 200 400 800 1600 3200">
<param name=y_data
value="10 20 40 80 160 320">
<param name=x_axis_label value="This is an x label">
<param name=y_axis_label value="This is a y label">
<param name=color value=0x0000ff80>
<param name=marker value="filled circle">
</object>
<p>and this one.
</body>

View File

@@ -5,7 +5,7 @@ SUBDIRS = fr
doc_DATA = \
gnucash.css \
index.html
index.html
EXTRA_DIST = \
.cvsignore \