<< Click to Display Table of Contents >> RayFlow Client > 7.4 u1 > User Guide > Configuration Dashboard Configuration |
The RayFlow Dashboard consists of XML based tiles, providing access to both dynamically updated key figures and quick links to underlying content. The entire configuration related to the dashboard is stored in the dashboard.xml file, located in the RayFlow installation directory. A user can edit this .xml file in a text editor and add new tiles to the dashboard.
Syntax:
<Tile>
Tile Properties
</Tile>
Properties:
Property |
Description |
BUTTON.COLOR |
Sets the color of the tile. The property takes any valid XAML-markup color as value |
BUTTON.CLICK |
Defines what happens when a tile is clicked upon. [@abc.def.ghi] : opens snapin with id abc.def.ghi [@abc.def.ghi/thepath] : opens snapin with id abc.def.ghi, path "thepath" [@abc.def.ghi?args] : opens snapin with id abc.def.ghi and passes arguments "args" [@abc.def.ghi/thepath?args] :opens snapin with id abc.def.ghi, path "thepath" and passes arguments "args" Any other string (for example notepad.exe) starts this application (if the file exists) |
BUTTON.SIZE |
Sets the size of the tile: Small: 128 x 128 px Large: 266 x 128 px ExtraLarge: 266px x 266 px |
TEXT.SIZE |
Sets the size of the text appearing on the tile Small: Small text to be used with small tiles Large: Little bit larger to display larger texts ExtraLarge: Used to display big numbers in tiles |
TEXT.POSITION |
Set the position of the text within the tile TopLeft TopCenter TopRight CenterLeft Center CenterRight BottomLeft BottomCenter BottomRight |
TEXT.MARGIN |
Any valid XAML-markup Thickness For example 0,0,10,2 or 0 2 3 4 or 0 2 or 5 etc. |
TEXT.INNERXML |
The text to be displayed. May contain special formatting: [@abc.def.ghi]:Gets value from data provider abc.def.ghi [#abc]: Gets localizes resource abc any other string :Displays the string |
CHART.SIZE |
Small: 128 x 128 px Large: 266 x 128 px ExtraLarge: 266px x 266px |
CHART.TYPE |
Pie Bars BarsStacked Columns ColumnsStacked |
CHART.CLICK |
[@abc.def.ghi]: opens snapin with id abc.def.ghi [@abc.def.ghi/thepath]:opens snapin with id abc.def.ghi, path "thepath" [@abc.def.ghi?args]: opens snapin with id abc.def.ghi and passes arguments "args" [@abc.def.ghi/thepath?args]: opens snapin with id abc.def.ghi, path "thepath" and passes arguments "args" Any other string (for example notepad.exe) starts this application (if file exists) |
CHART.SOURCE |
abc.def.ghi: Loads the data from data provider abc.def.ghi |
Example:
<Tile
Size="Small"
Color="#ff07BBF0"
Click="Rayflow.Reports">
<Icon Position="TopLeft" Margin="0">Resources\tileReports.png</Icon>
<Text Position="BottomRight" Size="Large">reports</Text>
</Tile>