Versions Compared

Key

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

...

The showDisplayGroupsHideAllToolWindows element is used to configure the displayGroupsButton (also known as shortcut or favourites). If the displayGroupsButton is enabled, all open tool windows (for example log panel, data viewer etc..) will be hidden. If the displayGroupsButton is disabled  again, all hidden tool windows will be shown again.

Resampling

Since 2018.01 the <resampling> element can be used to configure the time steps shown in the Time Series Resampling Dialog. The configured time steps will be shown in the dialog, in the same order as they appear in the configuration. They will replace the default time steps which are normally available. A configuration example is shown below:

Code Block
languagexml
titleExample configuration of custom time steps in the Resampling Dialog
	<resampling>
		<timeStep id="myCustomStep1"/>
		<timeStep id="myCustomStep2"/>
		<timeStep label="30 minutes" unit="minute" multiplier="30"/>
		<timeStep label="2 months" unit="month" multiplier="2"/>
	</resampling>

In this example, for the "myCustomStep1" and "myCustomStep2", the label configured in the TimeSteps.xml is used. 

As a configuration aid, the code block below shows how to configure the same time steps as are used by FEWS as a default. When the default is used, the labels will be automatically localized (translated). When configuring which time steps are to be shown in the dialog, this localization must be done by the configurator instead. 

Code Block
languagexml
titleTime steps used as default in the Resampling Dialog
	<resampling>
		<timeStep label="minute" unit="minute"/>
		<timeStep label="5 minutes" unit="minute" multiplier="5"/>
		<timeStep label="10 minutes" unit="minute" multiplier="10"/>
		<timeStep label="15 minutes" unit="minute" multiplier="15"/>
		<timeStep label="30 minutes" unit="minute" multiplier="30"/>
		<timeStep label="hour" unit="hour"/>
		<timeStep label="2 hour" unit="hour" multiplier="2"/>
		<timeStep label="3 hour" unit="hour" multiplier="3"/>
		<timeStep label="6 hour" unit="hour" multiplier="6"/>
		<timeStep label="12 hour" unit="hour" multiplier="12"/>
		<timeStep label="day" unit="day"/>
		<timeStep label="week" unit="week"/>
		<timeStep label="month" unit="month"/>
		<timeStep label="year" unit="year"/>
	</resampling>