Examples of configuration files for multiple panels
The following PANELS.ini file uses the new tags and creates a title panel at the top, an accordion panel on the left, and a main display in the center. There are draggable dividers between all panels.
<?xml version="1.0" ?>
<panels xmlns="www.sl.com" version="1.0">
<rtvLayout title="Accordion Example" dividers="true">
<rtvDisplayPanel region="north" name="title_panel"
display="title.rtv"/>
<rtvAccordionPanel region="west" width="200" navdata="navtree.xml"/>
<rtvDisplayPanel region="center" name="main_panel"
display="chart_main.rtv"/>
</rtvLayout>
</panels>
The next PANELS.INI file creates a tabbed display panel at the top and a title panel at the bottom.
<?xml version="1.0" ?>
<panels xmlns="www.sl.com" version="1.0">
<rtvLayout title="Tab Example">
<rtvTabbedDisplayPanel region="center" tabs="navtabs.xml"
display="stock_chart"/>
<rtvDisplayPanel region="south" name="title_panel" display="title.rtv"/>
</rtvLayout>
</panels>