Tags:
tag this topic
create new tag
view all tags
---+ Chart Design Overview _This page describes the basic steps and related subroutine calls for creating a simple chart._ ---++ Description: Designing a chart can be as simple as calling two subroutines - one to initialize a new chart specification (.CHART INITIALIZE) and one to render the chart (.CHART RENDER). The following example illustrates the ILF statements needed to initialize and render a default pie chart (/tmp/piechart.png) using a previously defined dataset consisting of seven data values. <verbatim> * Initialize Pie Chart PASS PIE CHART FIELD SHARE? N GOSUB 0CD .CHART INITIALIZE * Note: We aren't showing the steps to supply the data, * see the next example * Render chart SET --- TEMP 256 = /tmp/piechart.png PASS --- TEMP 256 FIELD SHARE? Y SUBR 0CD .CHART RENDER SUBPROCESS END? N FAIL 0 </verbatim> <br /><img width="678" alt="DefaultPieChart.png" src="%ATTACHURLPATH%/DefaultPieChart.png" height="597" /> By adding a few additional subroutine calls to set a title, seven data values with sector labels, and a 3D view, a more useful chart can be rendered. <verbatim> * ================================================================ * Create Pie Chart * ================================================================ * Initialize a Pie Chart PASS PIE CHART FIELD SHARE? N GOSUB 0CD .CHART INITIALIZE * Set a title PASS Sales % By Day of Week FIELD SHARE? N GOSUB 0CD .CHART SET TITLE * Set 3D view PASS 3D FIELD SHARE? N GOSUB 0CD .PIE SET VIEW * Add pie sectors with day of week labels and data values PASS 25 FIELD SHARE? N PASS Monday FIELD SHARE? N GOSUB 0CD .PIE SECT ADD NEXT PASS 14 FIELD SHARE? N PASS Tuesday FIELD SHARE? N GOSUB 0CD .PIE SECT ADD NEXT PASS 36 FIELD SHARE? N PASS Wednesday FIELD SHARE? N GOSUB 0CD .PIE SECT ADD NEXT PASS 2 FIELD SHARE? N PASS Thursday FIELD SHARE? N GOSUB 0CD .PIE SECT ADD NEXT PASS 12 FIELD SHARE? N PASS Friday FIELD SHARE? N GOSUB 0CD .PIE SECT ADD NEXT PASS 33 FIELD SHARE? N PASS Saturday FIELD SHARE? N GOSUB 0CD .PIE SECT ADD NEXT PASS 5 FIELD SHARE? N PASS Sunday FIELD SHARE? N GOSUB 0CD .PIE SECT ADD NEXT * ================================================================ * Render chart * ================================================================ SET --- TEMP 256 = /tmp/piechart.png PASS --- TEMP 256 FIELD SHARE? Y SUBR 0CD .CHART RENDER SUBPROCESS END? N FAIL 0 </verbatim> <br /><img width="678" alt="piechart.png" src="%ATTACHURLPATH%/piechart.png" height="597" /> Also notice the use of SUBR instead of GOSUB to call the chart rendering subroutine. This is a large process and compile times/sizes will be reduced if you call it as a separate process instead of including it in your process with a GOSUB. ---++ Comments _Read what other users have said about this page or add your own comments._ %COMMENT% -- Main.SteveFrizzell - 2010-04-01
Attachments
Attachments
Topic attachments
I
Attachment
History
Action
Size
Date
Who
Comment
png
DefaultPieChart.png
r1
manage
80.8 K
2010-04-01 - 20:08
SteveFrizzell
Default Pie Chart
png
piechart.png
r1
manage
89.0 K
2010-04-01 - 20:13
SteveFrizzell
Pie Chart
E
dit
|
A
ttach
|
Watch
|
P
rint version
|
H
istory
: r6
<
r5
<
r4
<
r3
<
r2
|
B
acklinks
|
V
iew topic
|
Ra
w
edit
|
M
ore topic actions
Topic revision: r6 - 2013-05-28
-
JeanNeron
Home
Site map
Main web
MedicaidBilling web
Sandbox web
TWiki web
Main Web
Users
Groups
Index
Search
Changes
Notifications
RSS Feed
Statistics
Preferences
P
P
View
Raw View
Print version
Find backlinks
History
More topic actions
Edit
Raw edit
Attach file or image
Edit topic preference settings
Set new parent
More topic actions
Account
Log In
E
dit
A
ttach
Copyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback