Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Since version 2022.01 a specific display config file has been introduced in order to define default settings for the product info panel.

columns visibility

This applies to the visibility of columns, each column can be made invisible by default.

This will be overruled if the user changes the column visibility via the right mouse show/hide columns option also introduced in 2022.01.

Image Added

Image Added

These settings will be stored in the user settings, which will overrule the defaults from the config.

default settings for creating product info

in the config it is also possible to disable elements from the product creation panel, like is done with Confidence and Classification in the example below.

It is also possible to specify a default range for the forecast time, which in this case is 10 days:

Image Added 

The config for this looks as follow:

Code Block
languagexml
titleforecastProductInfoDisplay.xml
<?xml version="1.0" encoding="UTF-8"?>
<forecastProductInfoDisplay xmlns="http://www.wldelft.nl/fews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews http://fews.wldelft.nl/schemas/version1.0/forecastProductInfoDisplay.xsd">
	<productSelection enabled="true"/>
	<forecastTime>
		<defaultForecastTimeSelection>RANGE</defaultForecastTimeSelection>
		<defaultForecastPeriod unit="day" multiplier="10"/>
	</forecastTime>
	<confidence enabled="false">
		<defaultLevel>MEDIUM</defaultLevel>
	</confidence>
	<classification enabled="false"/>
	<columns>		
		<classification visibleByDefault="false"/>
	</columns>
</forecastProductInfoDisplay>

Using the Forecast Product Information

...