<?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 Is it possible to make this better and readable? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702173#M20760</link>
    <description>&lt;P&gt;I am creating an excel chart but the labels on x-axis are not shown properly. Is it possible to make this better?&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attaching the code, the source data and the resulting excel chart.&lt;/P&gt;</description>
    <pubDate>Sat, 28 Nov 2020 12:37:20 GMT</pubDate>
    <dc:creator>Arju1</dc:creator>
    <dc:date>2020-11-28T12:37:20Z</dc:date>
    <item>
      <title>Is it possible to make this better and readable?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702173#M20760</link>
      <description>&lt;P&gt;I am creating an excel chart but the labels on x-axis are not shown properly. Is it possible to make this better?&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attaching the code, the source data and the resulting excel chart.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Nov 2020 12:37:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702173#M20760</guid>
      <dc:creator>Arju1</dc:creator>
      <dc:date>2020-11-28T12:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to make this better and readable?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702175#M20761</link>
      <description>&lt;P&gt;Many of us will not download Excel (or Microsoft Office) files because they are security threats. Personally, I no longer download ANY files from forum web sites. Please include the data and code and screen capture examples of plots in your message. Provide the data according to &lt;A href="https://blogs.sas.com/content/sastraining/2016/03/11/jedi-sas-tricks-data-to-data-step-macro/" target="_self"&gt;these instructions&lt;/A&gt; (and not in any other format).&lt;/P&gt;</description>
      <pubDate>Sat, 28 Nov 2020 12:50:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702175#M20761</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-11-28T12:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to make this better and readable?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702278#M20762</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;As directed, the graph generated is: Please notice that on xaxis the labels are compacted so not usable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Arju1_0-1606642878919.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52109iA8053529F3A0106E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Arju1_0-1606642878919.png" alt="Arju1_0-1606642878919.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Sas Code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data work.msudatax;&lt;BR /&gt;infile 'd:\sasdata\charts\msudata.csv'&lt;BR /&gt;delimiter=','&lt;BR /&gt;missover&lt;BR /&gt;firstobs=2&lt;BR /&gt;DSD&lt;BR /&gt;lrecl = 32767&lt;BR /&gt;obs=290;&lt;BR /&gt;input Date:ddmmyy10. Time:time. FreeMSU TotalMSU;&lt;BR /&gt;format Date ddmmyy10. Time time8.7;&lt;BR /&gt;run;&lt;BR /&gt;data msudatax;&lt;BR /&gt;set msudatax;&lt;BR /&gt;date_time=dhms(date,0,0,time);&lt;BR /&gt;run;&lt;BR /&gt;proc Contents data=work.msudatax;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;%data2datastep(msudatax, work, work, E:\Sai\make_msu.sas)&lt;BR /&gt;ods excel file="E:\SAI\temp.xlsx" options(sheet_name="gugus.xls");&lt;BR /&gt;ods excel options (orientation='landscape');&lt;BR /&gt;proc print data=work.msudatax (drop=date_time) noobs;&lt;BR /&gt;title "MSU Report";&lt;BR /&gt;ods excel options(sheet_interval = 'proc' sheet_name = "MSU");&lt;BR /&gt;ods graphics / reset width = 7.4in height=5.8in imagemap;&lt;BR /&gt;proc sgplot data = work.msudatax ;&lt;BR /&gt;needle x=date_time y=FreeMSU;&lt;BR /&gt;format date_time datetime14. ;&lt;BR /&gt;xaxis type= discrete display=(nolabel) fitpolicy=SPLIT splitchar=':';&lt;BR /&gt;run;&lt;BR /&gt;ods graphics / reset;&lt;BR /&gt;ods excel close;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Datalines as instructed generated with data2datastep macro -file&amp;nbsp;make_msu.sas:&lt;/P&gt;&lt;P&gt;data work.MSUDATAX;&lt;BR /&gt;infile datalines dsd truncover;&lt;BR /&gt;input Date:DDMMYY10. Time:TIME8.7 FreeMSU:32. TotalMSU:32. date_time:32.;&lt;BR /&gt;format Date DDMMYY10. Time TIME8.7;&lt;BR /&gt;datalines4;&lt;BR /&gt;26/11/2020,7:02:00,101,370,1921993320&lt;BR /&gt;26/11/2020,7:07:00,103,370,1921993620&lt;BR /&gt;26/11/2020,7:12:00,100,370,1921993920&lt;BR /&gt;26/11/2020,7:17:00,103,370,1921994220&lt;BR /&gt;26/11/2020,7:22:00,103,370,1921994520&lt;BR /&gt;26/11/2020,7:27:00,105,370,1921994820&lt;BR /&gt;26/11/2020,7:32:00,106,370,1921995120&lt;BR /&gt;26/11/2020,7:37:00,107,370,1921995420&lt;BR /&gt;26/11/2020,7:42:00,108,370,1921995720&lt;BR /&gt;26/11/2020,7:47:00,110,370,1921996020&lt;BR /&gt;26/11/2020,7:52:00,111,370,1921996320&lt;BR /&gt;26/11/2020,7:57:00,112,370,1921996620&lt;BR /&gt;26/11/2020,8:02:00,112,370,1921996920&lt;BR /&gt;26/11/2020,8:07:00,110,370,1921997220&lt;BR /&gt;26/11/2020,8:12:00,110,370,1921997520&lt;BR /&gt;26/11/2020,8:17:00,110,370,1921997820&lt;BR /&gt;26/11/2020,8:22:00,110,370,1921998120&lt;BR /&gt;26/11/2020,8:27:00,108,370,1921998420&lt;BR /&gt;26/11/2020,8:32:00,107,370,1921998720&lt;BR /&gt;26/11/2020,8:37:00,106,370,1921999020&lt;BR /&gt;26/11/2020,8:42:00,106,370,1921999320&lt;BR /&gt;26/11/2020,8:47:00,104,370,1921999620&lt;BR /&gt;26/11/2020,8:52:00,103,370,1921999920&lt;BR /&gt;26/11/2020,8:57:00,99,370,1922000220&lt;BR /&gt;26/11/2020,9:02:00,97,370,1922000520&lt;BR /&gt;26/11/2020,9:07:00,94,370,1922000820&lt;BR /&gt;26/11/2020,9:12:00,89,370,1922001120&lt;BR /&gt;26/11/2020,9:17:00,87,370,1922001420&lt;BR /&gt;26/11/2020,9:22:00,82,370,1922001720&lt;BR /&gt;26/11/2020,9:27:00,79,370,1922002020&lt;BR /&gt;26/11/2020,9:32:00,77,370,1922002320&lt;BR /&gt;26/11/2020,9:37:00,74,370,1922002620&lt;BR /&gt;26/11/2020,9:42:00,68,370,1922002920&lt;BR /&gt;26/11/2020,9:47:00,66,370,1922003220&lt;BR /&gt;26/11/2020,9:52:00,64,370,1922003520&lt;BR /&gt;26/11/2020,9:57:00,63,370,1922003820&lt;BR /&gt;26/11/2020,10:02:00,62,370,1922004120&lt;BR /&gt;26/11/2020,10:07:00,62,370,1922004420&lt;BR /&gt;26/11/2020,10:12:00,62,370,1922004720&lt;BR /&gt;26/11/2020,10:17:00,62,370,1922005020&lt;BR /&gt;26/11/2020,10:22:00,59,370,1922005320&lt;BR /&gt;26/11/2020,10:27:00,56,370,1922005620&lt;BR /&gt;26/11/2020,10:32:00,52,370,1922005920&lt;BR /&gt;26/11/2020,10:37:00,51,370,1922006220&lt;BR /&gt;26/11/2020,10:42:00,48,370,1922006520&lt;BR /&gt;26/11/2020,10:47:00,44,370,1922006820&lt;BR /&gt;26/11/2020,10:52:00,41,370,1922007120&lt;BR /&gt;26/11/2020,10:57:00,37,370,1922007420&lt;BR /&gt;26/11/2020,11:02:00,35,370,1922007720&lt;BR /&gt;26/11/2020,11:07:00,38,370,1922008020&lt;BR /&gt;26/11/2020,11:12:00,39,370,1922008320&lt;BR /&gt;26/11/2020,11:17:00,37,370,1922008620&lt;BR /&gt;26/11/2020,11:22:00,38,370,1922008920&lt;BR /&gt;26/11/2020,11:27:00,37,370,1922009220&lt;BR /&gt;26/11/2020,11:32:00,36,370,1922009520&lt;BR /&gt;26/11/2020,11:37:00,36,370,1922009820&lt;BR /&gt;26/11/2020,11:42:00,33,370,1922010120&lt;BR /&gt;26/11/2020,11:47:00,31,370,1922010420&lt;BR /&gt;26/11/2020,11:52:00,30,370,1922010720&lt;BR /&gt;26/11/2020,11:57:00,28,370,1922011020&lt;BR /&gt;26/11/2020,12:02:00,25,370,1922011320&lt;BR /&gt;26/11/2020,12:07:00,27,370,1922011620&lt;BR /&gt;26/11/2020,12:12:00,23,370,1922011920&lt;BR /&gt;26/11/2020,12:17:00,18,370,1922012220&lt;BR /&gt;26/11/2020,12:22:00,16,370,1922012520&lt;BR /&gt;26/11/2020,12:27:00,15,370,1922012820&lt;BR /&gt;26/11/2020,12:32:00,13,370,1922013120&lt;BR /&gt;26/11/2020,12:37:00,13,370,1922013420&lt;BR /&gt;26/11/2020,12:42:00,13,370,1922013720&lt;BR /&gt;26/11/2020,12:47:00,11,370,1922014020&lt;BR /&gt;26/11/2020,12:52:00,11,370,1922014320&lt;BR /&gt;26/11/2020,12:57:00,12,370,1922014620&lt;BR /&gt;26/11/2020,13:02:00,12,370,1922014920&lt;BR /&gt;26/11/2020,13:07:00,17,370,1922015220&lt;BR /&gt;26/11/2020,13:12:00,22,370,1922015520&lt;BR /&gt;26/11/2020,13:17:00,24,370,1922015820&lt;BR /&gt;26/11/2020,13:22:00,27,370,1922016120&lt;BR /&gt;26/11/2020,13:27:00,28,370,1922016420&lt;BR /&gt;26/11/2020,13:32:00,30,370,1922016720&lt;BR /&gt;26/11/2020,13:37:00,31,370,1922017020&lt;BR /&gt;26/11/2020,13:42:00,34,370,1922017320&lt;BR /&gt;26/11/2020,13:47:00,36,370,1922017620&lt;BR /&gt;26/11/2020,13:52:00,36,370,1922017920&lt;BR /&gt;26/11/2020,13:57:00,37,370,1922018220&lt;BR /&gt;26/11/2020,14:02:00,38,370,1922018520&lt;BR /&gt;26/11/2020,14:07:00,38,370,1922018820&lt;BR /&gt;26/11/2020,14:12:00,37,370,1922019120&lt;BR /&gt;26/11/2020,14:17:00,36,370,1922019420&lt;BR /&gt;26/11/2020,14:22:00,36,370,1922019720&lt;BR /&gt;26/11/2020,14:27:00,37,370,1922020020&lt;BR /&gt;26/11/2020,14:32:00,40,370,1922020320&lt;BR /&gt;26/11/2020,14:37:00,41,370,1922020620&lt;BR /&gt;26/11/2020,14:42:00,41,370,1922020920&lt;BR /&gt;26/11/2020,14:47:00,43,370,1922021220&lt;BR /&gt;26/11/2020,14:52:00,45,370,1922021520&lt;BR /&gt;26/11/2020,14:57:00,44,370,1922021820&lt;BR /&gt;26/11/2020,15:02:00,46,370,1922022120&lt;BR /&gt;26/11/2020,15:07:00,45,370,1922022420&lt;BR /&gt;26/11/2020,15:12:00,44,370,1922022720&lt;BR /&gt;26/11/2020,15:17:00,43,370,1922023020&lt;BR /&gt;26/11/2020,15:22:00,42,370,1922023320&lt;BR /&gt;26/11/2020,15:27:00,43,370,1922023620&lt;BR /&gt;26/11/2020,15:32:00,44,370,1922023920&lt;BR /&gt;26/11/2020,15:37:00,45,370,1922024220&lt;BR /&gt;26/11/2020,15:42:00,45,370,1922024520&lt;BR /&gt;26/11/2020,15:47:00,46,370,1922024820&lt;BR /&gt;26/11/2020,15:52:00,48,370,1922025120&lt;BR /&gt;26/11/2020,15:57:00,51,370,1922025420&lt;BR /&gt;26/11/2020,16:02:00,52,370,1922025720&lt;BR /&gt;26/11/2020,16:07:00,54,370,1922026020&lt;BR /&gt;26/11/2020,16:12:00,54,370,1922026320&lt;BR /&gt;26/11/2020,16:17:00,57,370,1922026620&lt;BR /&gt;26/11/2020,16:22:00,59,370,1922026920&lt;BR /&gt;26/11/2020,16:27:00,59,370,1922027220&lt;BR /&gt;26/11/2020,16:32:00,61,370,1922027520&lt;BR /&gt;26/11/2020,16:37:00,61,370,1922027820&lt;BR /&gt;26/11/2020,16:42:00,62,370,1922028120&lt;BR /&gt;26/11/2020,16:47:00,63,370,1922028420&lt;BR /&gt;26/11/2020,16:52:00,62,370,1922028720&lt;BR /&gt;26/11/2020,16:57:00,64,370,1922029020&lt;BR /&gt;26/11/2020,17:02:00,66,370,1922029320&lt;BR /&gt;26/11/2020,17:07:00,66,370,1922029620&lt;BR /&gt;26/11/2020,17:12:00,62,370,1922029920&lt;BR /&gt;26/11/2020,17:17:00,62,370,1922030220&lt;BR /&gt;26/11/2020,17:22:00,62,370,1922030520&lt;BR /&gt;26/11/2020,17:27:00,63,370,1922030820&lt;BR /&gt;26/11/2020,17:32:00,62,370,1922031120&lt;BR /&gt;26/11/2020,17:37:00,62,370,1922031420&lt;BR /&gt;26/11/2020,17:42:00,62,370,1922031720&lt;BR /&gt;26/11/2020,17:47:00,61,370,1922032020&lt;BR /&gt;26/11/2020,17:52:00,60,370,1922032320&lt;BR /&gt;26/11/2020,17:57:00,60,370,1922032620&lt;BR /&gt;26/11/2020,18:02:00,63,370,1922032920&lt;BR /&gt;26/11/2020,18:07:00,62,370,1922033220&lt;BR /&gt;26/11/2020,18:12:00,62,370,1922033520&lt;BR /&gt;26/11/2020,18:17:00,64,370,1922033820&lt;BR /&gt;26/11/2020,18:22:00,65,370,1922034120&lt;BR /&gt;26/11/2020,18:27:00,66,370,1922034420&lt;BR /&gt;26/11/2020,18:32:00,67,370,1922034720&lt;BR /&gt;26/11/2020,18:37:00,70,370,1922035020&lt;BR /&gt;26/11/2020,18:42:00,68,370,1922035320&lt;BR /&gt;26/11/2020,18:47:00,67,370,1922035620&lt;BR /&gt;26/11/2020,18:52:00,69,370,1922035920&lt;BR /&gt;26/11/2020,18:57:00,71,370,1922036220&lt;BR /&gt;26/11/2020,19:02:00,74,370,1922036520&lt;BR /&gt;26/11/2020,19:07:00,77,370,1922036820&lt;BR /&gt;26/11/2020,19:12:00,76,370,1922037120&lt;BR /&gt;26/11/2020,19:17:00,79,370,1922037420&lt;BR /&gt;26/11/2020,19:22:00,83,370,1922037720&lt;BR /&gt;26/11/2020,19:27:00,85,370,1922038020&lt;BR /&gt;26/11/2020,19:32:00,89,370,1922038320&lt;BR /&gt;26/11/2020,19:37:00,92,370,1922038620&lt;BR /&gt;26/11/2020,19:42:00,93,370,1922038920&lt;BR /&gt;26/11/2020,19:47:00,95,370,1922039220&lt;BR /&gt;26/11/2020,19:52:00,97,370,1922039520&lt;BR /&gt;26/11/2020,19:57:00,100,370,1922039820&lt;BR /&gt;26/11/2020,20:02:00,104,370,1922040120&lt;BR /&gt;26/11/2020,20:07:00,105,370,1922040420&lt;BR /&gt;26/11/2020,20:12:00,101,370,1922040720&lt;BR /&gt;26/11/2020,20:17:00,99,370,1922041020&lt;BR /&gt;26/11/2020,20:22:00,100,370,1922041320&lt;BR /&gt;26/11/2020,20:27:00,102,370,1922041620&lt;BR /&gt;26/11/2020,20:32:00,104,370,1922041920&lt;BR /&gt;26/11/2020,20:37:00,106,370,1922042220&lt;BR /&gt;26/11/2020,20:42:00,106,370,1922042520&lt;BR /&gt;26/11/2020,20:47:00,106,370,1922042820&lt;BR /&gt;26/11/2020,20:52:00,106,370,1922043120&lt;BR /&gt;26/11/2020,20:57:00,106,370,1922043420&lt;BR /&gt;26/11/2020,21:02:00,108,370,1922043720&lt;BR /&gt;26/11/2020,21:07:00,109,370,1922044020&lt;BR /&gt;26/11/2020,21:12:00,111,370,1922044320&lt;BR /&gt;26/11/2020,21:17:00,113,370,1922044620&lt;BR /&gt;26/11/2020,21:22:00,115,370,1922044920&lt;BR /&gt;26/11/2020,21:27:00,118,370,1922045220&lt;BR /&gt;26/11/2020,21:32:00,123,370,1922045520&lt;BR /&gt;26/11/2020,21:37:00,125,370,1922045820&lt;BR /&gt;26/11/2020,21:42:00,123,370,1922046120&lt;BR /&gt;26/11/2020,21:47:00,123,370,1922046420&lt;BR /&gt;26/11/2020,21:52:00,125,370,1922046720&lt;BR /&gt;26/11/2020,21:57:00,127,370,1922047020&lt;BR /&gt;26/11/2020,22:02:00,129,370,1922047320&lt;BR /&gt;26/11/2020,22:07:00,133,370,1922047620&lt;BR /&gt;26/11/2020,22:12:00,134,370,1922047920&lt;BR /&gt;26/11/2020,22:17:00,136,370,1922048220&lt;BR /&gt;26/11/2020,22:22:00,135,370,1922048520&lt;BR /&gt;26/11/2020,22:27:00,132,370,1922048820&lt;BR /&gt;26/11/2020,22:32:00,134,370,1922049120&lt;BR /&gt;26/11/2020,22:37:00,135,370,1922049420&lt;BR /&gt;26/11/2020,22:42:00,133,370,1922049720&lt;BR /&gt;26/11/2020,22:47:00,133,370,1922050020&lt;BR /&gt;26/11/2020,22:52:00,135,370,1922050320&lt;BR /&gt;26/11/2020,22:57:00,137,370,1922050620&lt;BR /&gt;26/11/2020,23:02:00,138,370,1922050920&lt;BR /&gt;26/11/2020,23:07:00,138,370,1922051220&lt;BR /&gt;26/11/2020,23:12:00,134,370,1922051520&lt;BR /&gt;26/11/2020,23:17:00,131,370,1922051820&lt;BR /&gt;26/11/2020,23:22:00,128,370,1922052120&lt;BR /&gt;26/11/2020,23:27:00,126,370,1922052420&lt;BR /&gt;26/11/2020,23:32:00,126,370,1922052720&lt;BR /&gt;26/11/2020,23:37:00,125,370,1922053020&lt;BR /&gt;26/11/2020,23:42:00,120,370,1922053320&lt;BR /&gt;26/11/2020,23:47:00,117,370,1922053620&lt;BR /&gt;26/11/2020,23:52:00,115,370,1922053920&lt;BR /&gt;26/11/2020,23:57:00,111,370,1922054220&lt;BR /&gt;27/11/2020,0:02:00,106,370,1922054520&lt;BR /&gt;27/11/2020,0:07:00,110,370,1922054820&lt;BR /&gt;27/11/2020,0:12:00,107,370,1922055120&lt;BR /&gt;27/11/2020,0:17:00,108,370,1922055420&lt;BR /&gt;27/11/2020,0:22:00,105,370,1922055720&lt;BR /&gt;27/11/2020,0:27:00,100,370,1922056020&lt;BR /&gt;27/11/2020,0:32:00,96,370,1922056320&lt;BR /&gt;27/11/2020,0:37:00,92,370,1922056620&lt;BR /&gt;27/11/2020,0:42:00,85,370,1922056920&lt;BR /&gt;27/11/2020,0:47:00,79,370,1922057220&lt;BR /&gt;27/11/2020,0:52:00,80,370,1922057520&lt;BR /&gt;27/11/2020,0:57:00,79,370,1922057820&lt;BR /&gt;27/11/2020,1:02:00,76,370,1922058120&lt;BR /&gt;27/11/2020,1:07:00,73,370,1922058420&lt;BR /&gt;27/11/2020,1:12:00,65,370,1922058720&lt;BR /&gt;27/11/2020,1:17:00,56,370,1922059020&lt;BR /&gt;27/11/2020,1:22:00,48,370,1922059320&lt;BR /&gt;27/11/2020,1:27:00,42,370,1922059620&lt;BR /&gt;27/11/2020,1:32:00,38,370,1922059920&lt;BR /&gt;27/11/2020,1:37:00,37,370,1922060220&lt;BR /&gt;27/11/2020,1:42:00,38,370,1922060520&lt;BR /&gt;27/11/2020,1:47:00,39,370,1922060820&lt;BR /&gt;27/11/2020,1:52:00,38,370,1922061120&lt;BR /&gt;27/11/2020,1:57:00,33,370,1922061420&lt;BR /&gt;27/11/2020,2:02:00,30,370,1922061720&lt;BR /&gt;27/11/2020,2:07:00,28,370,1922062020&lt;BR /&gt;27/11/2020,2:12:00,26,370,1922062320&lt;BR /&gt;27/11/2020,2:17:00,22,370,1922062620&lt;BR /&gt;27/11/2020,2:22:00,23,370,1922062920&lt;BR /&gt;27/11/2020,2:27:00,21,370,1922063220&lt;BR /&gt;27/11/2020,2:32:00,15,370,1922063520&lt;BR /&gt;27/11/2020,2:37:00,14,370,1922063820&lt;BR /&gt;27/11/2020,2:42:00,14,370,1922064120&lt;BR /&gt;27/11/2020,2:47:00,10,370,1922064420&lt;BR /&gt;27/11/2020,2:52:00,5,370,1922064720&lt;BR /&gt;27/11/2020,2:57:00,0,370,1922065020&lt;BR /&gt;27/11/2020,3:02:00,-4,370,1922065320&lt;BR /&gt;27/11/2020,3:07:00,-3,370,1922065620&lt;BR /&gt;27/11/2020,3:12:00,-3,370,1922065920&lt;BR /&gt;27/11/2020,3:17:00,-3,370,1922066220&lt;BR /&gt;27/11/2020,3:22:00,-6,370,1922066520&lt;BR /&gt;27/11/2020,3:27:00,-8,370,1922066820&lt;BR /&gt;27/11/2020,3:32:00,-9,370,1922067120&lt;BR /&gt;27/11/2020,3:37:00,-8,370,1922067420&lt;BR /&gt;27/11/2020,3:42:00,-8,370,1922067720&lt;BR /&gt;27/11/2020,3:47:00,-8,370,1922068020&lt;BR /&gt;27/11/2020,3:52:00,-9,370,1922068320&lt;BR /&gt;27/11/2020,3:57:00,-8,370,1922068620&lt;BR /&gt;27/11/2020,4:02:00,-6,370,1922068920&lt;BR /&gt;27/11/2020,4:07:00,-2,370,1922069220&lt;BR /&gt;27/11/2020,4:12:00,0,370,1922069520&lt;BR /&gt;27/11/2020,4:17:00,2,370,1922069820&lt;BR /&gt;27/11/2020,4:22:00,7,370,1922070120&lt;BR /&gt;27/11/2020,4:27:00,11,370,1922070420&lt;BR /&gt;27/11/2020,4:32:00,16,370,1922070720&lt;BR /&gt;27/11/2020,4:37:00,21,370,1922071020&lt;BR /&gt;27/11/2020,4:42:00,26,370,1922071320&lt;BR /&gt;27/11/2020,4:47:00,29,370,1922071620&lt;BR /&gt;27/11/2020,4:52:00,28,370,1922071920&lt;BR /&gt;27/11/2020,4:57:00,29,370,1922072220&lt;BR /&gt;27/11/2020,5:02:00,35,370,1922072520&lt;BR /&gt;27/11/2020,5:07:00,42,370,1922072820&lt;BR /&gt;27/11/2020,5:12:00,49,370,1922073120&lt;BR /&gt;27/11/2020,5:17:00,54,370,1922073420&lt;BR /&gt;27/11/2020,5:22:00,61,370,1922073720&lt;BR /&gt;27/11/2020,5:27:00,66,370,1922074020&lt;BR /&gt;27/11/2020,5:32:00,71,370,1922074320&lt;BR /&gt;27/11/2020,5:37:00,71,370,1922074620&lt;BR /&gt;27/11/2020,5:42:00,73,370,1922074920&lt;BR /&gt;27/11/2020,5:47:00,73,370,1922075220&lt;BR /&gt;27/11/2020,5:52:00,73,370,1922075520&lt;BR /&gt;27/11/2020,5:57:00,77,370,1922075820&lt;BR /&gt;27/11/2020,6:02:00,80,370,1922076120&lt;BR /&gt;27/11/2020,6:07:00,83,370,1922076420&lt;BR /&gt;27/11/2020,6:12:00,80,370,1922076720&lt;BR /&gt;27/11/2020,6:17:00,79,370,1922077020&lt;BR /&gt;27/11/2020,6:22:00,81,370,1922077320&lt;BR /&gt;27/11/2020,6:27:00,83,370,1922077620&lt;BR /&gt;27/11/2020,6:32:00,89,370,1922077920&lt;BR /&gt;27/11/2020,6:37:00,90,370,1922078220&lt;BR /&gt;27/11/2020,6:42:00,95,370,1922078520&lt;BR /&gt;27/11/2020,6:47:00,99,370,1922078820&lt;BR /&gt;27/11/2020,6:52:00,102,370,1922079120&lt;BR /&gt;27/11/2020,6:57:00,105,370,1922079420&lt;BR /&gt;27/11/2020,7:02:00,108,370,1922079720&lt;BR /&gt;;;;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 09:51:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702278#M20762</guid>
      <dc:creator>Arju1</dc:creator>
      <dc:date>2020-11-29T09:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to make this better and readable?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702285#M20763</link>
      <description>&lt;P&gt;Try taking TYPE=DISCRETE out of the XAXIS statement.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 11:39:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702285#M20763</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-11-29T11:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to make this better and readable?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702304#M20764</link>
      <description>Hello PaigeMiller,&lt;BR /&gt;Thank you so much. It is working.&lt;BR /&gt;Is it possible to change attributes of negative msu needles red?&lt;BR /&gt;with warm regards&lt;BR /&gt;Arju</description>
      <pubDate>Sun, 29 Nov 2020 14:12:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702304#M20764</guid>
      <dc:creator>Arju1</dc:creator>
      <dc:date>2020-11-29T14:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to make this better and readable?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702309#M20765</link>
      <description>&lt;P&gt;You might be able to do this with what SAS calls &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=n18szqcwir8q2nn10od9hhdh2ksj.htm&amp;amp;locale=en" target="_self"&gt;Attribute Maps&lt;/A&gt;, but I have never done this for a Needle Plot. So I leave it up to you to give it a try.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2020 15:26:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-it-possible-to-make-this-better-and-readable/m-p/702309#M20765</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-11-29T15:26:31Z</dc:date>
    </item>
  </channel>
</rss>

