<?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>Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/discussions/f/general/39597/hierarchy-browser-tree-structure-to-show-the-details</link><description>Hi, 
 
 I want to show the following hierarchy image in my interface. How can I achieve this? Please provide the coding.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150861?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 16:53:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:45910ada-ee42-4148-b26d-45d33dc96a77</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;If you are working on a cloud environment, you can deploy plugins from the admin console.&lt;/p&gt;
&lt;p&gt;Edit your profile and select the company you are working for.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150857?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 16:26:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d905d81e-7009-4f51-987c-cde1fbaff063</guid><dc:creator>brinda sateesh</dc:creator><description>&lt;p&gt;When I try to download it is saying that&amp;nbsp;&lt;/p&gt;
&lt;ul class="attribute-list"&gt;
&lt;li class="attribute-item get-it check-that"&gt;&lt;span class="confirm"&gt;&lt;span class="attribute-header"&gt;This app is available to download for Appian Customers, Partners, and Employees. Please make sure to self-associate from your profile.&lt;/span&gt;&lt;/span&gt;&lt;span class="confirm"&gt;&lt;span class="attribute-header"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="confirm"&gt;&lt;span class="attribute-header"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span class="confirm"&gt;&lt;span class="attribute-header"&gt;How can I self-associate from my profile?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150856?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 16:25:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8154d106-1592-459b-a201-331e4104c6e6</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;You can refer to example code in the documentation below!&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://docs.appian.com/suite/help/25.2/Tree_Browser_Component.html"&gt;https://docs.appian.com/suite/help/25.2/Tree_Browser_Component.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Replace the data variables as per your usecase. Let me know here if you get stuck anywhere or face any errors! Hope this helps.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150847?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 15:40:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:acdbaff4-3803-43d2-b4f1-2f1d255320f1</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;In our project, we used a graph flow UI solely for the business&amp;#39;s visual representation. I have made code changes to meet your requirements.&lt;br /&gt; Although some graph plugins exist, I highly recommend using Appian&amp;#39;s OOB functions to achieve this, as those plugins are not officially supported by Appian and may cause issues.&lt;br /&gt;&lt;br /&gt;Hope this helps you..&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  /* Current approval level (1-5) - get this from your process/database */
  local!currentLevel: 4,
  a!sectionLayout(
    label: &amp;quot;Task Approval Flow&amp;quot;,
    contents: {
      a!boxLayout(
        label: &amp;quot;&amp;quot;,
        contents: {
          /* Level 1 */
          a!columnsLayout(
            columns: {
              a!columnLayout(),
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {
                      a!richTextDisplayField(
                        value: {
                          a!richTextIcon(
                            icon: if(
                              local!currentLevel &amp;gt;= 1,
                              &amp;quot;check-circle&amp;quot;,
                              &amp;quot;circle-o&amp;quot;
                            ),
                            color: if(
                              local!currentLevel &amp;gt;= 1,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            ),
                            size: &amp;quot;MEDIUM&amp;quot;
                          ),
                          &amp;quot;  &amp;quot;,
                          a!richTextItem(
                            text: &amp;quot;Level 1&amp;quot;,
                            size: &amp;quot;MEDIUM&amp;quot;,
                            style: if(local!currentLevel = 1, &amp;quot;STRONG&amp;quot;, &amp;quot;PLAIN&amp;quot;),
                            color: if(
                              local!currentLevel &amp;gt;= 1,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            )
                          )
                        },
                        align: &amp;quot;CENTER&amp;quot;
                      )
                    },
                    style: if(local!currentLevel = 1, &amp;quot;ACCENT&amp;quot;, &amp;quot;NONE&amp;quot;),
                    padding: &amp;quot;STANDARD&amp;quot;,
                    marginBelow: &amp;quot;NONE&amp;quot;
                  ),
                  /* Vertical Line */
                  a!richTextDisplayField(
                    value: {
                      a!richTextItem(
                        text: &amp;quot;│&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 2,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      ),
                      char(10),
                      a!richTextIcon(
                        icon: &amp;quot;arrow-down&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 2,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      ),
                      char(10),
                      a!richTextItem(
                        text: &amp;quot;│&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 2,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      )
                    },
                    align: &amp;quot;CENTER&amp;quot;
                  ),
                  /* Level 2 */
                  a!cardLayout(
                    contents: {
                      a!richTextDisplayField(
                        value: {
                          a!richTextIcon(
                            icon: if(
                              local!currentLevel &amp;gt;= 2,
                              &amp;quot;check-circle&amp;quot;,
                              &amp;quot;circle-o&amp;quot;
                            ),
                            color: if(
                              local!currentLevel &amp;gt;= 2,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            ),
                            size: &amp;quot;MEDIUM&amp;quot;
                          ),
                          &amp;quot;  &amp;quot;,
                          a!richTextItem(
                            text: &amp;quot;Level 2&amp;quot;,
                            size: &amp;quot;MEDIUM&amp;quot;,
                            style: if(local!currentLevel = 2, &amp;quot;STRONG&amp;quot;, &amp;quot;PLAIN&amp;quot;),
                            color: if(
                              local!currentLevel &amp;gt;= 2,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            )
                          )
                        },
                        align: &amp;quot;CENTER&amp;quot;
                      )
                    },
                    style: if(local!currentLevel = 2, &amp;quot;ACCENT&amp;quot;, &amp;quot;NONE&amp;quot;),
                    padding: &amp;quot;STANDARD&amp;quot;,
                    marginBelow: &amp;quot;NONE&amp;quot;
                  )
                }
              ),
              a!columnLayout()
            }
          ),
          /* Enhanced Branch Lines to Level 3 and 4 */
          a!columnsLayout(
            columns: {
              a!columnLayout(width: &amp;quot;NARROW&amp;quot;),
              a!columnLayout(
                contents: {
                  a!richTextDisplayField(
                    value: {
                      a!richTextItem(
                        text: &amp;quot;│&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 3,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      )
                    },
                    align: &amp;quot;CENTER&amp;quot;,
                    marginBelow: &amp;quot;NONE&amp;quot;
                  ),
                  a!richTextDisplayField(
                    value: {
                      a!richTextItem(
                        text: &amp;quot;┌─────────┴─────────┐&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 3,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      )
                    },
                    align: &amp;quot;CENTER&amp;quot;,
                    marginBelow: &amp;quot;NONE&amp;quot;
                  ),
                  a!richTextDisplayField(
                    value: {
                      a!richTextItem(
                        text: &amp;quot;↓                   ↓&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 3,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      )
                    },
                    align: &amp;quot;CENTER&amp;quot;
                  )
                }
              ),
              a!columnLayout(width: &amp;quot;NARROW&amp;quot;)
            },
            marginBelow: &amp;quot;NONE&amp;quot;
          ),
          /* Level 3 and 4 in parallel */
          a!columnsLayout(
            columns: {
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {
                      a!richTextDisplayField(
                        value: {
                          a!richTextIcon(
                            icon: if(
                              local!currentLevel &amp;gt;= 3,
                              &amp;quot;check-circle&amp;quot;,
                              &amp;quot;circle-o&amp;quot;
                            ),
                            color: if(
                              local!currentLevel &amp;gt;= 3,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            ),
                            size: &amp;quot;MEDIUM&amp;quot;
                          ),
                          &amp;quot;  &amp;quot;,
                          a!richTextItem(
                            text: &amp;quot;Level 3&amp;quot;,
                            size: &amp;quot;MEDIUM&amp;quot;,
                            style: if(local!currentLevel = 3, &amp;quot;STRONG&amp;quot;, &amp;quot;PLAIN&amp;quot;),
                            color: if(
                              local!currentLevel &amp;gt;= 3,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            )
                          )
                        },
                        align: &amp;quot;CENTER&amp;quot;
                      )
                    },
                    style: if(local!currentLevel = 3, &amp;quot;ACCENT&amp;quot;, &amp;quot;NONE&amp;quot;),
                    padding: &amp;quot;STANDARD&amp;quot;
                  )
                }
              ),
              a!columnLayout(
                contents: {
                  a!richTextDisplayField(
                    value: a!richTextItem(
                      text: &amp;quot;Parallel Approval&amp;quot;,
                      style: &amp;quot;EMPHASIS&amp;quot;,
                      color: &amp;quot;SECONDARY&amp;quot;,
                      size: &amp;quot;SMALL&amp;quot;
                    ),
                    align: &amp;quot;CENTER&amp;quot;
                  )
                }
              ),
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {
                      a!richTextDisplayField(
                        value: {
                          a!richTextIcon(
                            icon: if(
                              local!currentLevel &amp;gt;= 4,
                              &amp;quot;check-circle&amp;quot;,
                              &amp;quot;circle-o&amp;quot;
                            ),
                            color: if(
                              local!currentLevel &amp;gt;= 4,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            ),
                            size: &amp;quot;MEDIUM&amp;quot;
                          ),
                          &amp;quot;  &amp;quot;,
                          a!richTextItem(
                            text: &amp;quot;Level 4&amp;quot;,
                            size: &amp;quot;MEDIUM&amp;quot;,
                            style: if(local!currentLevel = 4, &amp;quot;STRONG&amp;quot;, &amp;quot;PLAIN&amp;quot;),
                            color: if(
                              local!currentLevel &amp;gt;= 4,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            )
                          )
                        },
                        align: &amp;quot;CENTER&amp;quot;
                      )
                    },
                    style: if(local!currentLevel = 4, &amp;quot;ACCENT&amp;quot;, &amp;quot;NONE&amp;quot;),
                    padding: &amp;quot;STANDARD&amp;quot;
                  )
                }
              )
            },
            marginBelow: &amp;quot;NONE&amp;quot;
          ),
          /* Enhanced Merge Lines to Level 5 */
          a!columnsLayout(
            columns: {
              a!columnLayout(width: &amp;quot;NARROW&amp;quot;),
              a!columnLayout(
                contents: {
                  a!richTextDisplayField(
                    value: {
                      a!richTextItem(
                        text: &amp;quot;↓                   ↓&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 5,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      )
                    },
                    align: &amp;quot;CENTER&amp;quot;,
                    marginBelow: &amp;quot;NONE&amp;quot;
                  ),
                  a!richTextDisplayField(
                    value: {
                      a!richTextItem(
                        text: &amp;quot;└─────────┬─────────┘&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 5,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      )
                    },
                    align: &amp;quot;CENTER&amp;quot;,
                    marginBelow: &amp;quot;NONE&amp;quot;
                  ),
                  a!richTextDisplayField(
                    value: {
                      a!richTextItem(
                        text: &amp;quot;│&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 5,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      ),
                      char(10),
                      a!richTextIcon(
                        icon: &amp;quot;arrow-down&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 5,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      ),
                      char(10),
                      a!richTextItem(
                        text: &amp;quot;│&amp;quot;,
                        size: &amp;quot;LARGE&amp;quot;,
                        color: if(
                          local!currentLevel &amp;gt;= 5,
                          &amp;quot;POSITIVE&amp;quot;,
                          &amp;quot;SECONDARY&amp;quot;
                        )
                      )
                    },
                    align: &amp;quot;CENTER&amp;quot;
                  ),
                  
                }
              ),
              a!columnLayout(width: &amp;quot;NARROW&amp;quot;)
            },
            marginBelow: &amp;quot;NONE&amp;quot;
          ),
          /* Level 5 */
          a!columnsLayout(
            columns: {
              a!columnLayout(),
              a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {
                      a!richTextDisplayField(
                        value: {
                          a!richTextIcon(
                            icon: if(
                              local!currentLevel &amp;gt;= 5,
                              &amp;quot;check-circle-o&amp;quot;,
                              &amp;quot;circle-o&amp;quot;
                            ),
                            color: if(
                              local!currentLevel &amp;gt;= 5,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            ),
                            size: &amp;quot;MEDIUM&amp;quot;
                          ),
                          &amp;quot;  &amp;quot;,
                          a!richTextItem(
                            text: &amp;quot;Level 5 - Completed&amp;quot;,
                            size: &amp;quot;MEDIUM&amp;quot;,
                            style: if(local!currentLevel = 5, &amp;quot;STRONG&amp;quot;, &amp;quot;PLAIN&amp;quot;),
                            color: if(
                              local!currentLevel &amp;gt;= 5,
                              &amp;quot;POSITIVE&amp;quot;,
                              &amp;quot;SECONDARY&amp;quot;
                            )
                          )
                        },
                        align: &amp;quot;CENTER&amp;quot;
                      )
                    },
                    style: if(local!currentLevel = 5, &amp;quot;SUCCESS&amp;quot;, &amp;quot;NONE&amp;quot;),
                    padding: &amp;quot;STANDARD&amp;quot;
                  )
                }
              ),
              a!columnLayout()
            }
          )
        },
        style: &amp;quot;STANDARD&amp;quot;,
        padding: &amp;quot;STANDARD&amp;quot;
      ),
      /* Status Summary */
      a!cardLayout(
        contents: {
          a!richTextDisplayField(
            value: {
              a!richTextItem(text: &amp;quot;Current Status: &amp;quot;, style: &amp;quot;STRONG&amp;quot;),
              a!richTextItem(
                text: if(
                  local!currentLevel = 1,
                  &amp;quot;Awaiting Level 1 Approval&amp;quot;,
                  local!currentLevel = 2,
                  &amp;quot;Awaiting Level 2 Approval&amp;quot;,
                  local!currentLevel = 3,
                  &amp;quot;Awaiting Level 3 Approval (Parallel)&amp;quot;,
                  local!currentLevel = 4,
                  &amp;quot;Awaiting Level 4 Approval (Parallel)&amp;quot;,
                  local!currentLevel = 5,
                  &amp;quot;Process Completed&amp;quot;,
                  &amp;quot;Not Started&amp;quot;
                ),
                color: if(
                  local!currentLevel = 5,
                  &amp;quot;POSITIVE&amp;quot;,
                  &amp;quot;ACCENT&amp;quot;
                )
              )
            }
          )
        },
        style: &amp;quot;INFO&amp;quot;
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150843?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 15:17:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a06af3f3-7b24-433b-abd3-41a82ee1c69d</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;You can use this plugin to show a diagram like this.&lt;/p&gt;
&lt;p&gt;&lt;a href="/b/appmarket/posts/network-graph-component"&gt;community.appian.com/.../network-graph-component&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150839?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 14:54:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3e53da97-1c3d-481f-acf5-777d804e1dae</guid><dc:creator>brinda sateesh</dc:creator><description>&lt;p&gt;Based on the status, I want to show the entire diagram and highlight the level&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150838?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 14:52:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:54923b6f-210c-4924-a611-80ec928a81e6</guid><dc:creator>brinda sateesh</dc:creator><description>&lt;p&gt;It is not staff hierarchy.&amp;nbsp; It&amp;#39;s a kind of task approval flow.&amp;nbsp; First the task will be approved by Level 1 group.&amp;nbsp; Then it goes to Level 2 group for approval.&amp;nbsp; Then it goes to level 3 and Level 4 group simultaneously for approval.&amp;nbsp; Finally, Level 5 status will be completed.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Hierarchy Browser (Tree) Structure to show the details</title><link>https://community.appian.com/thread/150832?ContentTypeID=1</link><pubDate>Mon, 11 Aug 2025 14:03:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:63014ff2-a53a-4c97-947c-fdd32f07e243</guid><dc:creator>Richard Michaelis</dc:creator><description>&lt;p&gt;Hello Brinda,&lt;br /&gt;&lt;br /&gt;what kind &amp;quot;&lt;span&gt;hierarchy image&amp;quot; do you like to have? Staff hierarchy? should it be flexible depending on data and interactions?&lt;br /&gt;Can you explain what you try to archieve?&lt;br /&gt;kind regards,&lt;br /&gt;RIchard&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>