Sample 43770: Fill patterns for bar charts
This sample uses the Graph Template Language (GTL) to produce a bar chart with different fill patterns. It features the FILLPATTERN and DATASKIN options which are available beginning in SAS® 9.3.
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
This sample uses the Graph Template Language (GTL) to produce a bar chart with different fill patterns. It features the FILLPATTERN and DATASKIN options which are available beginning in SAS® 9.3.
proc template;
define statgraph regress;
begingraph;
entrytitle 'A Variety of Fill Patterns';
layout overlay;
barchart x=name y=height / group=name display=(fillpattern fill outline) dataskin=sheen;
endlayout;
endgraph;
end;
/* Fill patterns are defined using the FILLPATTERN style element attribute. */
define style styles.mypatterns;
parent=styles.listing;
style GraphData1 from GraphData1 /
fillpattern = "L1";
style GraphData2 from GraphData2 /
fillpattern = "X1";
style GraphData3 from GraphData3 /
fillpattern = "R1";
style GraphData4 from GraphData4 /
fillpattern = "L5";
style GraphData5 from GraphData5 /
fillpattern = "X5";
style GraphData6 from GraphData6 /
fillpattern = "R5";
end;
run;
data class;
set sashelp.class;
if _n_ < 7;
run;
ods html style=mypatterns;
ods graphics / reset border width=600px height=400px;
proc sgrender data=class template=regress;
run;
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
This sample usess the Graph Template Language (GTL) to produce a bar chart with different fill patterns. It features the FILLPATTERN and DATASKIN options which are available beginning in SAS® 9.3.
Type: | Sample |
Topic: | SAS Reference ==> Procedures ==> SGRENDER
|
Date Modified: | 2011-09-15 09:38:59 |
Date Created: | 2011-07-18 16:04:44 |
Operating System and Release Information
SAS System | SAS/GRAPH | z/OS | 9.3 | | 9.3 TS1M0 | |
Microsoft® Windows® for x64 | 9.3 | | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.3 | | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Enterprise Edition | 9.3 | | 9.3 TS1M0 | |
Microsoft Windows Server 2003 Standard Edition | 9.3 | | 9.3 TS1M0 | |
Microsoft Windows Server 2003 for x64 | 9.3 | | 9.3 TS1M0 | |
Microsoft Windows Server 2008 | 9.3 | | 9.3 TS1M0 | |
Microsoft Windows Server 2008 for x64 | 9.3 | | 9.3 TS1M0 | |
Microsoft Windows XP Professional | 9.3 | | 9.3 TS1M0 | |
Windows 7 Enterprise 32 bit | 9.3 | | 9.3 TS1M0 | |
Windows 7 Enterprise x64 | 9.3 | | 9.3 TS1M0 | |
Windows 7 Home Premium 32 bit | 9.3 | | 9.3 TS1M0 | |
Windows 7 Home Premium x64 | 9.3 | | 9.3 TS1M0 | |
Windows 7 Professional 32 bit | 9.3 | | 9.3 TS1M0 | |
Windows 7 Professional x64 | 9.3 | | 9.3 TS1M0 | |
Windows 7 Ultimate 32 bit | 9.3 | | 9.3 TS1M0 | |
Windows 7 Ultimate x64 | 9.3 | | 9.3 TS1M0 | |
Windows Vista | 9.3 | | 9.3 TS1M0 | |
Windows Vista for x64 | 9.3 | | 9.3 TS1M0 | |
64-bit Enabled AIX | 9.3 | | 9.3 TS1M0 | |
64-bit Enabled HP-UX | 9.3 | | 9.3 TS1M0 | |
64-bit Enabled Solaris | 9.3 | | 9.3 TS1M0 | |
HP-UX IPF | 9.3 | | 9.3 TS1M0 | |
Linux | 9.3 | | 9.3 TS1M0 | |
Linux for x64 | 9.3 | | 9.3 TS1M0 | |
Solaris for x64 | 9.3 | | 9.3 TS1M0 | |