Problem Note 17238: Plotted line(s) may be missing from a graph created with PROC GPLOT
Plotted lines may be unexpectedly missing from a plot created with the
SAS/GRAPH GPLOT procedure. This issue is most likely to occur if
multiple values of a character category variable specified on the PLOT
statement of PROC GPLOT contains a leading blank.
To circumvent the problem, remove the leading blank from the values of
the category variable using the LEFT function in a SAS DATA Step.
For example:
DATA NEW;
SET OLD;
<category-variable>=LEFT(<category-variable>);
RUN;
PROC GPLOT;
PLOT <Y-axis-variable> * <X-axis-variable> = <category-variable>
RUN;
QUIT;
Select the Hot Fix tab in this note to access the hot fix for this issue.
Operating System and Release Information
SAS System | SAS/GRAPH | Microsoft Windows XP Professional | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows NT Workstation | 9.1 TS1M3 SP3 | |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows XP 64-bit Edition | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows Server 2003 Enterprise Edition | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows Server 2003 Standard Edition | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows 2000 Professional | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows 2000 Server | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows Server 2003 Datacenter Edition | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows 2000 Advanced Server | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Microsoft Windows 2000 Datacenter Server | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
64-bit Enabled Solaris | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
z/OS | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Linux | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Linux on Itanium | 9.1 TS1M3 SP3 | |
64-bit Enabled HP-UX | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
HP-UX IPF | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
64-bit Enabled AIX | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
OpenVMS Alpha | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
Tru64 UNIX | 9.1 TS1M3 SP3 | 9.2 TS1M0 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | |
Topic: | SAS Reference ==> Procedures ==> GPLOT
|
Date Modified: | 2006-09-28 14:24:38 |
Date Created: | 2006-03-13 10:48:55 |