<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Vertical  milestone suggestion</title><link>https://community.appian.com/discussions/f/user-interface/39562/vertical-milestone-suggestion</link><description>Hi Team, 
 
 if I configure the horizontal milestone it looks good like having more length in between values, 
 
 
 
 but have a requirement same style we need to achieve in vertical style 
 
 &amp;#39; 
 
 but here we can increase length of each value like how</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Vertical  milestone suggestion</title><link>https://community.appian.com/thread/150652?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 15:11:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:26c8753b-a8b0-4774-a4a2-7e6d2a3aa582</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;As a!milestoneField() has default horizontal orientation.&lt;br /&gt;So for your requirement you need to build custom UI.&lt;br /&gt;&lt;br /&gt;Check below interface code for your reference&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!localVariables(
    local!verticalSteps: {
      a!map(name: &amp;quot;Analysis&amp;quot;,      isCompleted: true, isActive:false),
      a!map(name: &amp;quot;Assessment&amp;quot;, isCompleted: false, isActive:true),
      a!map(name: &amp;quot;Decision&amp;quot;,     isCompleted: false, isActive:false),
      a!map(name: &amp;quot;Closed&amp;quot;,             isCompleted: false, isActive:false)
    },
    /* Style Configuration */
    local!activeColor: &amp;quot;ACCENT&amp;quot;,
    /* Blue/Purple */
    local!inactiveColor: &amp;quot;#D1D5DB&amp;quot;,
    a!sectionLayout(
      label: &amp;quot;Milestone&amp;quot;,
      labelSize: &amp;quot;MEDIUM&amp;quot;,
      labelColor: &amp;quot;STANDARD&amp;quot;,
      contents: {
        a!forEach(
          items: local!verticalSteps,
          expression: {
            a!columnsLayout(
              columns: {
                a!columnLayout(
                  contents: {
                    if(
                      fv!item.isCompleted,
                      a!richTextDisplayField(
                        align: &amp;quot;CENTER&amp;quot;,
                        value: {
                          /* Circle Icon */
                          a!richTextItem(
                            text:&amp;quot;⬤&amp;quot;,
                            size: &amp;quot;MEDIUM_PLUS&amp;quot;,
                            color:local!activeColor,
                            style: &amp;quot;STRONG&amp;quot;
                            )
                        }
                      ),
                      if(
                        fv!item.isActive,
                      a!richTextDisplayField(
                        align: &amp;quot;CENTER&amp;quot;,
                        value: {
                          /* Circle Icon */
                          a!richTextItem(
                            text:&amp;quot;&amp;#67855;&amp;quot;,
                            size: &amp;quot;MEDIUM_PLUS&amp;quot;,
                            color:local!activeColor,
                            style: &amp;quot;STRONG&amp;quot;
                          )
                        }
                      ),
                      a!richTextDisplayField(
                        align: &amp;quot;CENTER&amp;quot;,
                        value: {
                          /* Circle Icon */
                          a!richTextItem(
                            text:&amp;quot;○&amp;quot;,
                            size: &amp;quot;MEDIUM_PLUS&amp;quot;,
                            color:local!inactiveColor
                          )
                        }
                      )
                      )
                    )
                  },
                  width: &amp;quot;EXTRA_NARROW&amp;quot;
                ),
                a!columnLayout(
                  contents: {
                    a!richTextDisplayField(
                      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                      value: {
                        a!richTextItem(
                          text: fv!item.name,
                          size: &amp;quot;STANDARD&amp;quot;,
                          style: if(
                           or(fv!item.isCompleted,fv!item.isActive),
                            &amp;quot;STRONG&amp;quot;,
                            &amp;quot;PLAIN&amp;quot;
                          )
                        )
                      },
                      preventWrapping: true,
                      marginBelow: &amp;quot;NONE&amp;quot;
                    )
                  
                  }
                )
              },
              alignVertical: &amp;quot;MIDDLE&amp;quot;,
              marginAbove: if(
                fv!isFirst,
                &amp;quot;STANDARD&amp;quot;,
                &amp;quot;NONE&amp;quot;
              ),
              marginBelow: &amp;quot;NONE&amp;quot;,
              spacing: &amp;quot;NONE&amp;quot;,
              stackWhen: &amp;quot;NEVER&amp;quot;
            ),
            a!columnsLayout(
              columns: {
                a!columnLayout(
                  contents: {
                    a!imageField(
                      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                      images: {
                        a!documentImage(
                          document: a!EXAMPLE_VERTICAL_CONNECTOR_IMAGE()
                        )
                      },
                      size: &amp;quot;TINY&amp;quot;,
                      align: &amp;quot;CENTER&amp;quot;,
                    )
                  },
                  width: &amp;quot;EXTRA_NARROW&amp;quot;
                ),
                a!columnLayout()
              },
              alignVertical: &amp;quot;MIDDLE&amp;quot;,
              showWhen: not(fv!isLast),
              marginBelow: &amp;quot;NONE&amp;quot;,
              spacing: &amp;quot;NONE&amp;quot;,
              stackWhen: &amp;quot;NEVER&amp;quot;
            )
          }
        )
      }
    )
  )
}


&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Vertical  milestone suggestion</title><link>https://community.appian.com/thread/150650?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 14:12:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:18e41689-de4b-42b4-bcd0-bec38ef644cd</guid><dc:creator>kapilsharma</dc:creator><description>&lt;p&gt;Hi &amp;nbsp;,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can try going through the documentation of the Milestone patterns,&lt;br /&gt;&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/24.3/milestone_bar.html"&gt;Milestone bar&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope it helps !!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Vertical  milestone suggestion</title><link>https://community.appian.com/thread/150633?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 10:33:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b605b123-201d-4abd-bb3c-f82c13bfd938</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;AFAIK, this cannot be adjusted.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>