<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Specify levels=all to display the graph error in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/259316#M9352</link>
    <description>&lt;P&gt;What are yo using to create your chart? Are you on EG, or SAS UE or Visual Analytics?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post generated code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what does your data look like and what kind of chart are you trying to create?&lt;/P&gt;</description>
    <pubDate>Mon, 28 Mar 2016 09:16:51 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-03-28T09:16:51Z</dc:date>
    <item>
      <title>Specify levels=all to display the graph error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/259313#M9351</link>
      <description>&lt;P&gt;I want create a bar chart. &amp;nbsp;After done set the Column to Chart, Sum of and run it. &amp;nbsp;It show me an error "There were xxx midpoints generated from the data. &amp;nbsp;Specify levels=all to display the graph. &amp;nbsp;What the error is? &amp;nbsp;Where I can set the levels=all? &amp;nbsp;Please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2016 08:00:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/259313#M9351</guid>
      <dc:creator>derickloo</dc:creator>
      <dc:date>2016-03-28T08:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Specify levels=all to display the graph error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/259316#M9352</link>
      <description>&lt;P&gt;What are yo using to create your chart? Are you on EG, or SAS UE or Visual Analytics?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post generated code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what does your data look like and what kind of chart are you trying to create?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2016 09:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/259316#M9352</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-28T09:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Specify levels=all to display the graph error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/259562#M9374</link>
      <description>&lt;P&gt;I'm using EG. I wish to create a bar chart. The data has Customer Code, Month, Year and Sum Amount of particular Month Year. I wish to show in bar chart the total amount for each customer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the code generate by EG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;BR /&gt;CREATE VIEW WORK.SORTTempTableSorted AS&lt;BR /&gt;SELECT T.DebtorCode, T.SUM_of_Amount&lt;BR /&gt;FROM WORK.FILTER_FOR_APPEND_TABLE as T&lt;BR /&gt;;&lt;BR /&gt;QUIT;&lt;BR /&gt;Axis1&lt;BR /&gt;STYLE=1&lt;BR /&gt;WIDTH=1&lt;BR /&gt;MINOR=NONE&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;BR /&gt;Axis2&lt;BR /&gt;STYLE=1&lt;BR /&gt;WIDTH=1&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;BR /&gt;TITLE;&lt;BR /&gt;TITLE1 "Bar Chart";&lt;BR /&gt;FOOTNOTE;&lt;BR /&gt;FOOTNOTE1 "Generated by the SAS System (&amp;amp;_SASSERVERNAME, &amp;amp;SYSSCPL) on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at %TRIM(%SYSFUNC(TIME(), TIMEAMPM12.))";&lt;BR /&gt;PROC GCHART DATA=WORK.SORTTempTableSorted&lt;BR /&gt;;&lt;BR /&gt;VBAR&lt;BR /&gt;DebtorCode&lt;BR /&gt;/&lt;BR /&gt;SUMVAR=SUM_of_Amount&lt;BR /&gt;CLIPREF&lt;BR /&gt;FRAME TYPE=SUM&lt;BR /&gt;COUTLINE=BLACK&lt;BR /&gt;RAXIS=AXIS1&lt;BR /&gt;MAXIS=AXIS2&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2016 03:27:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/259562#M9374</guid>
      <dc:creator>derickloo</dc:creator>
      <dc:date>2016-03-29T03:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Specify levels=all to display the graph error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/261419#M9428</link>
      <description>&lt;P&gt;I think you can add the 'levels=all' option after the '/' in the following code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;VBAR
DebtorCode
/
&lt;FONT color="#993366"&gt;levels=all&lt;/FONT&gt;
SUMVAR=SUM_of_Amount
CLIPREF
FRAME TYPE=SUM
COUTLINE=BLACK
RAXIS=AXIS1
MAXIS=AXIS2&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 05 Apr 2016 14:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Specify-levels-all-to-display-the-graph-error/m-p/261419#M9428</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2016-04-05T14:49:16Z</dc:date>
    </item>
  </channel>
</rss>

