<?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 side by side graphical key performance indicator in SAS Web Report Studio</title>
    <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/side-by-side-graphical-key-performance-indicator/m-p/128769#M1829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SAS-Users,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i build one stored process with some code to display key performance indicators in the SAS Web Report Studio. &lt;/P&gt;&lt;P&gt;The Problem : &lt;/P&gt;&lt;P&gt;when i write the following lines : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Test1"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Test2"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;I get two kpis over a stored process into the SAS Web Report Studio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a chance to display the kpis side by side and not among each other?&lt;/P&gt;&lt;P&gt;I tried to write the following with ods tagsets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=row_panel(start); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close 4th and last column of Row #1 */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=column_panel(start); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close first panel */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS TAGSETS.sasreport12 event = panel(start);&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Absatz 1"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=column_panel(finish); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.HTMLpanel event=column_panel(start); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Absatz 2"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=row_panel(finish); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close 4th and last column of Row #1 */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=column_panel(finish); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close first panel */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS TAGSETS.sasreport12 event = panel(finish);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again the kpis are displayed among each other in the SAS Web Report Studio.s &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a solution to display n-kpis side by side?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards from Germany,&lt;/P&gt;&lt;P&gt;Marius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Nov 2012 17:42:34 GMT</pubDate>
    <dc:creator>mariusg</dc:creator>
    <dc:date>2012-11-16T17:42:34Z</dc:date>
    <item>
      <title>side by side graphical key performance indicator</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/side-by-side-graphical-key-performance-indicator/m-p/128769#M1829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SAS-Users,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i build one stored process with some code to display key performance indicators in the SAS Web Report Studio. &lt;/P&gt;&lt;P&gt;The Problem : &lt;/P&gt;&lt;P&gt;when i write the following lines : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Test1"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Test2"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;I get two kpis over a stored process into the SAS Web Report Studio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a chance to display the kpis side by side and not among each other?&lt;/P&gt;&lt;P&gt;I tried to write the following with ods tagsets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=row_panel(start); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close 4th and last column of Row #1 */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=column_panel(start); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close first panel */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS TAGSETS.sasreport12 event = panel(start);&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Absatz 1"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run; &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=column_panel(finish); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.HTMLpanel event=column_panel(start); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;proc gkpi mode=raised;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;speedometer&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;actual=.55&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;bounds=(0 .40 .60 1)/target=.85&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;lfont=(f="Albany AMT" height=.5cm)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;label="Absatz 2"&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;format="percent8.0";&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;run;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=row_panel(finish); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close 4th and last column of Row #1 */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS tagsets.sasreport12 event=column_panel(finish); &lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;/* Close first panel */&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;ODS TAGSETS.sasreport12 event = panel(finish);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again the kpis are displayed among each other in the SAS Web Report Studio.s &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a solution to display n-kpis side by side?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards from Germany,&lt;/P&gt;&lt;P&gt;Marius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 17:42:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/side-by-side-graphical-key-performance-indicator/m-p/128769#M1829</guid>
      <dc:creator>mariusg</dc:creator>
      <dc:date>2012-11-16T17:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: side by side graphical key performance indicator</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/side-by-side-graphical-key-performance-indicator/m-p/128770#M1830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marius&lt;/P&gt;&lt;P&gt;There is no direct way to display graphs side by side using proc GKPI . first you have to use proc GKPI then proc gslide which will create .png files and then you can use proc greplay to place them on the same page ;&lt;/P&gt;&lt;P&gt;if you require code you can write to me . but that is the only way i know which can be used to place multiple graphs on same page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 May 2013 15:41:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/side-by-side-graphical-key-performance-indicator/m-p/128770#M1830</guid>
      <dc:creator>ucvikas</dc:creator>
      <dc:date>2013-05-30T15:41:39Z</dc:date>
    </item>
  </channel>
</rss>

