<?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: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478263#M16508</link>
    <description>I appreciate the suggestion but I would prefer to make one image rather than try to combine multiple separate files if possible.</description>
    <pubDate>Mon, 16 Jul 2018 03:50:29 GMT</pubDate>
    <dc:creator>JeffMeyers</dc:creator>
    <dc:date>2018-07-16T03:50:29Z</dc:date>
    <item>
      <title>Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478123#M16505</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; I'm working on updating a macro I have that creates forest plots to potentially use the newer graphics procedures (version 9.4M5), and am namely testing out the PREFERRED column weights option. One thing that the macro does is allow the user to specify a COLBY (column by) variable to repeat graphs and analysis across in multiple columns:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21783i759818355E3B2727/image-size/large?v=v2&amp;amp;px=999" role="button" title="example1.png" alt="example1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my current macro I calculate column weights and use that with a SIDEBAR to set up the headers that span columns, but I'm curious if there's a simpler way to do it.&amp;nbsp; I've been playing around with some code and have gotten this far (I'm not concerned with formatting at this point):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods path WORK.TEMPLAT(UPDATE) SASHELP.TMPLMST (READ);
proc template;

    define statgraph blah;
        begingraph / designwidth=12in designheight=4in;
        layout lattice / rows=1 columns=13 columnweights=preferred rowdatarange=union columndatarange=union;
            rowaxes;
                rowaxis / reverse=true display=none displaysecondary=none tickvalueattrs=(family="Albany AMT") type=linear  griddisplay=on
                    linearopts=( viewmin=0 viewmax=3 tickvaluepriority=false tickvaluesequence=(start=0 end=3 increment=1)) ;
            endrowaxes;
            columnaxes;
                /*Row Headers Column*/
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                    
                /*Column section 1*/
                columnaxis / type=linear tickvalueattrs=(family="Albany AMT" size=10pt weight=normal color=black) 
                     linearopts=(tickvaluesequence=(start=0 end=1 increment=0.2) viewmin=0 viewmax=1 tickvaluefitpolicy=none) griddisplay=off 
                     display=(tickvalues ticks line) offsetmin=0 offsetmax=0;
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                   
                /*Column section 2*/ 
                columnaxis / type=linear tickvalueattrs=(family="Albany AMT" size=10pt weight=normal color=black) 
                     linearopts=(tickvaluesequence=(start=0 end=1 increment=0.2) viewmin=0 viewmax=1 tickvaluefitpolicy=none) griddisplay=off 
                     display=(tickvalues ticks line) offsetmin=0 offsetmax=0;
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0;
                    
                /*Column section 3*/
                columnaxis / type=linear tickvalueattrs=(family="Albany AMT" size=10pt weight=normal color=black) 
                     linearopts=(tickvaluesequence=(start=0 end=1 increment=0.2) viewmin=0 viewmax=1 tickvaluefitpolicy=none) griddisplay=off 
                     display=(tickvalues ticks line) offsetmin=0 offsetmax=0;
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
            endcolumnaxes;
            /*rowheaders*/
            axistable y=y value=subtitle / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=left indentweight=subind;
                    
            /*Column section 1*/
            layout overlay / walldisplay=none;
                highlowplot y=y low=lcl1_1 high=ucl1_1/ lowcap=lcl1_cap1 highcap=ucl1_cap1 name="line" ;
                scatterplot x=estimate1_1 y=y / name="mark" ;
            endlayout;
            axistable y=y value=ev_t_1 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
            axistable y=y value=km_est_range1_1 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
            axistable y=y value=pval_1 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
                
            /*Column section 2*/
            layout overlay / walldisplay=none ;
                highlowplot y=y low=lcl1_2 high=ucl1_2/ lowcap=lcl1_cap1 highcap=ucl1_cap1 name="line" ;
                scatterplot x=estimate1_2 y=y / name="mark";
            endlayout;
            axistable y=y value=ev_t_2 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
            axistable y=y value=km_est_range1_2 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
            axistable y=y value=pval_2 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
               
            /*Column section 3*/
            layout overlay / walldisplay=none ;
                highlowplot y=y low=lcl1_3 high=ucl1_3/ lowcap=lcl1_cap1 highcap=ucl1_cap1 name="line";
                scatterplot x=estimate1_3 y=y / name="mark";
            endlayout;
            axistable y=y value=ev_t_3 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
            axistable y=y value=km_est_range1_3 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
            axistable y=y value=pval_3 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                valuehalign=center indentweight=subind;
        endlayout;
        endgraph;
    end;
run;
data blah;
    set _plot;
run;
proc sgrender data=blah template=blah;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This makes the following:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21784i4028CE66E1ECDAC0/image-size/large?v=v2&amp;amp;px=999" role="button" title="example2.png" alt="example2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I could normally use the SIDEBAR space to make spanning column headers, but with the preferred option I don't know the weights.&amp;nbsp; Is there another way to make column headers that span across multiple columns?&amp;nbsp; (I want the graph and 3 stat columns to share the same header).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another way I tried this was to use nested LATTICE LAYOUTS, but that desyncs the row axes across the layouts.&amp;nbsp; Does anyone know if there's a way to keep the row axes synced across multiple nested layouts?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods path WORK.TEMPLAT(UPDATE) SASHELP.TMPLMST (READ);
proc template;

    define statgraph blah;
        begingraph / designwidth=12in designheight=4in;
        layout lattice / rows=1 columns=4 columnweights=preferred rowdatarange=union columndatarange=union;
            rowaxes;
                rowaxis / reverse=true display=none displaysecondary=none tickvalueattrs=(family="Albany AMT") type=linear  griddisplay=on
                    linearopts=( viewmin=0 viewmax=3 tickvaluepriority=false tickvaluesequence=(start=0 end=3 increment=1)) ;
            endrowaxes;
            columnaxes;
                /*Row Headers Column*/
                columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                    griddisplay=off display=none offsetmin=0 offsetmax=0; 
            endcolumnaxes;   
            /*rowheaders*/
            axistable y=y value=subtitle / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=left indentweight=subind;
            layout lattice / columns=4 rows=1 columnweights=preferred rowdatarange=union columndatarange=union;
                columnaxes;
                    /*Column section 1*/
                    columnaxis / type=linear tickvalueattrs=(family="Albany AMT" size=10pt weight=normal color=black) 
                         linearopts=(tickvaluesequence=(start=0 end=1 increment=0.2) viewmin=0 viewmax=1 tickvaluefitpolicy=none) griddisplay=off 
                         display=(tickvalues ticks line) offsetmin=0 offsetmax=0;
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                endcolumnaxes;
                rowaxes;
                    rowaxis / reverse=true display=none displaysecondary=none tickvalueattrs=(family="Albany AMT") type=linear  griddisplay=on
                        linearopts=( viewmin=0 viewmax=3 tickvaluepriority=false tickvaluesequence=(start=0 end=3 increment=1)) ;
                endrowaxes;
                 /*Column section 1*/
                layout overlay / walldisplay=none;
                    highlowplot y=y low=lcl1_1 high=ucl1_1/ lowcap=lcl1_cap1 highcap=ucl1_cap1 name="line" ;
                    scatterplot x=estimate1_1 y=y / name="mark" ;
                endlayout;
                axistable y=y value=ev_t_1 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
                axistable y=y value=km_est_range1_1 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
                axistable y=y value=pval_1 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
            endlayout;
            layout lattice / columns=4 rows=1 columnweights=preferred rowdatarange=union columndatarange=union;
                columnaxes;
                    /*Column section 2*/ 
                    columnaxis / type=linear tickvalueattrs=(family="Albany AMT" size=10pt weight=normal color=black) 
                         linearopts=(tickvaluesequence=(start=0 end=1 increment=0.2) viewmin=0 viewmax=1 tickvaluefitpolicy=none) griddisplay=off 
                         display=(tickvalues ticks line) offsetmin=0 offsetmax=0;
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0;
                endcolumnaxes;
                rowaxes;
                    rowaxis / reverse=true display=none displaysecondary=none tickvalueattrs=(family="Albany AMT") type=linear  griddisplay=on
                        linearopts=( viewmin=0 viewmax=3 tickvaluepriority=false tickvaluesequence=(start=0 end=3 increment=1)) ;
                endrowaxes;
                /*Column section 2*/
                layout overlay / walldisplay=none ;
                    highlowplot y=y low=lcl1_2 high=ucl1_2/ lowcap=lcl1_cap1 highcap=ucl1_cap1 name="line" ;
                    scatterplot x=estimate1_2 y=y / name="mark";
                endlayout;
                axistable y=y value=ev_t_2 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
                axistable y=y value=km_est_range1_2 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
                axistable y=y value=pval_2 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
            endlayout;
            layout lattice / columns=4 rows=1 columnweights=preferred rowdatarange=union columndatarange=union;
                columnaxes;
                    /*Column section 3*/
                    columnaxis / type=linear tickvalueattrs=(family="Albany AMT" size=10pt weight=normal color=black) 
                         linearopts=(tickvaluesequence=(start=0 end=1 increment=0.2) viewmin=0 viewmax=1 tickvaluefitpolicy=none) griddisplay=off 
                         display=(tickvalues ticks line) offsetmin=0 offsetmax=0;
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                    columnaxis / type=linear linearopts=(viewmin=0 viewmax=1) labelsplitchar='`' LABELFITPOLICY=SPLITALWAYS
                        griddisplay=off display=none offsetmin=0 offsetmax=0; 
                endcolumnaxes;
                rowaxes;
                    rowaxis / reverse=true display=none displaysecondary=none tickvalueattrs=(family="Albany AMT") type=linear  griddisplay=on
                        linearopts=( viewmin=0 viewmax=3 tickvaluepriority=false tickvaluesequence=(start=0 end=3 increment=1)) ;
                endrowaxes;
                /*Column section 3*/
                layout overlay / walldisplay=none ;
                    highlowplot y=y low=lcl1_3 high=ucl1_3/ lowcap=lcl1_cap1 highcap=ucl1_cap1 name="line";
                    scatterplot x=estimate1_3 y=y / name="mark";
                endlayout;
                axistable y=y value=ev_t_3 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
                axistable y=y value=km_est_range1_3 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
                axistable y=y value=pval_3 / valueattrs=(family="Albany AMT" weight=bold color=black size=10pt)
                    valuehalign=center indentweight=subind;
            endlayout;
        endlayout;
        endgraph;
    end;
run;


data blah;
    set _plot;
run;
proc sgrender data=blah template=blah;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Which makes the following image.&amp;nbsp; I have the grid lines turned on to show the row axes being out of sync due to the first column not having any axes showing.&amp;nbsp; I have tried including the row headers axis table with one of the column sections, but then it takes space away from that section and leaves the other two sections bigger.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example3.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21785i783CA60288B09AA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="example3.png" alt="example3.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would appreciate any ideas for either of my situations above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 19:53:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478123#M16505</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2018-07-19T19:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478151#M16506</link>
      <description>&lt;P&gt;you know a lot more about this than me, but if i just take your question to be "Is there another way to make column headers that span across multiple columns?", have you tried greplay? &lt;A href="http://support.sas.com/kb/44/973.html" target="_blank"&gt;http://support.sas.com/kb/44/973.html&lt;/A&gt;. I use it all the time to create multiple figs under a single title, but not sure if that's what you want, see attached fig for an example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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="aft, km v aft.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21787iFFD19BB843D9CB78/image-size/large?v=v2&amp;amp;px=999" role="button" title="aft, km v aft.jpg" alt="aft, km v aft.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jul 2018 20:56:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478151#M16506</guid>
      <dc:creator>pau13rown</dc:creator>
      <dc:date>2018-07-14T20:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478153#M16507</link>
      <description>&lt;P&gt;ps, do you plan on making your macro available to sas users? seems interesting.....&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jul 2018 20:58:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478153#M16507</guid>
      <dc:creator>pau13rown</dc:creator>
      <dc:date>2018-07-14T20:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478263#M16508</link>
      <description>I appreciate the suggestion but I would prefer to make one image rather than try to combine multiple separate files if possible.</description>
      <pubDate>Mon, 16 Jul 2018 03:50:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478263#M16508</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2018-07-16T03:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478265#M16509</link>
      <description>I have an older version of it available (%forestplot) on the old sascommunity.org page but it's very out of date.  I'm working on making a couple of updated articles of macros I have on there since the website is being decommissioned.</description>
      <pubDate>Mon, 16 Jul 2018 03:55:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478265#M16509</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2018-07-16T03:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478422#M16518</link>
      <description>&lt;P&gt;It would be helpful to provide a data set to work with, or to indicate one of the SAS supplied data sets in the SASHELP library that would be appropriate for this plot.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jul 2018 17:11:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/478422#M16518</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-07-16T17:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/479678#M16555</link>
      <description>The dataset has been attached to my original post (example.sas7bdat).</description>
      <pubDate>Thu, 19 Jul 2018 19:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/479678#M16555</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2018-07-19T19:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480304#M16599</link>
      <description>&lt;P&gt;Any thoughts &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13856"&gt;@Jay54&lt;/a&gt;?&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jul 2018 23:43:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480304#M16599</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2018-07-22T23:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480310#M16600</link>
      <description>&lt;P&gt;Hey Jeff.&amp;nbsp; I can't think of anything simple to help out.&amp;nbsp; Since you are using PREFERRED, the column width is internally computed, and you have no way of knowing its width. There is no option to automatically create a spanning column across specific columns.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now,&amp;nbsp;your plan of&amp;nbsp;using separate lattices for each group has potential.&amp;nbsp; If you keep all the categories the same in each lattice, and ensure the ROWAXIS offsetmin and offsetmax are set (by you) to be the same for all three layouts, maybe you can get consistent synched layout.&amp;nbsp; Worth a try.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 00:24:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480310#M16600</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2018-07-23T00:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480314#M16601</link>
      <description>Thanks Sanjay.  Any ideas on ways to sync the ROWAXES when one layout lattice has a visible x axis and another one does not (see my second image in the original post)?</description>
      <pubDate>Mon, 23 Jul 2018 00:42:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480314#M16601</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2018-07-23T00:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Span a column header across multiple columns in GTL or to sync ROWAXES across LATTICE LAYOUTS?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480315#M16602</link>
      <description>&lt;P&gt;Why not keep the y axis (Row axis) as part of the first layout?&amp;nbsp; What is the benefit of using the AxisTable to show the y-axis?&amp;nbsp; Hide the Rowaxes for the other Lattice panels.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If necessary, have you tried including the first axis table in with the first lattice panel, instead of a separate axis table?&amp;nbsp; I expect that would keep the alignments between the left column and the first lattice values.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 00:50:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Span-a-column-header-across-multiple-columns-in-GTL-or-to-sync/m-p/480315#M16602</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2018-07-23T00:50:29Z</dc:date>
    </item>
  </channel>
</rss>

