Versions Compared

Key

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

...

Code Block
	<toolTipsConfig>
		<toolTipProperties>
			<property>Observed_Date</property>
			<property>Prediction_Level</property>
			<property>Prediction_Level_Type</property>			
		</toolTipProperties>
	</toolTipsConfig>

Legend Tooltips Config

In addition to the default tooltips shown for items in the legend, specific tooltips can be configured using a time series filter, using standard properties and user defined attributes to add information. An example config is as follows:

Code Block
	<toolTipsConfig>
		<legendToolTip>
		   <timeSeries>
		      <valueType>scalar</valueType>
		      <parameterId>DT24</parameterId>
		      <timeSeriesType>external historical</timeSeriesType>
		   </timeSeries>
		   <toolTip>%LOCATION_ID% %PARAMETER_NAME% %QUALIFIER_NAME% [%PARAMETER_UNIT%]</toolTip>
		</legendToolTip>
	</toolTipsConfig>

Multiple legendTooltip elements as show in this example can be added to the tooltips config element, the tooltip text can be formatted in HTML by putting it in a CDATA block and %property% and/or @attribute@ tags can be inserted, with support for user defined attributes for locations, parameters and modifiers as well as the following standard properties:

%LOCATION_ID%
%LOCATION_NAME%
%LOCATION_SHORTNAME%
%LOCATION_DESCRIPTION%
%PARAMETER_ID%
%PARAMETER_NAME%
%PARAMETER_SHORTNAME%
%PARAMETER_DESCRIPTION%
%PARAMETER_UNIT%
%QUALIFIER_NAME%
%MODULE_INSTANCE_ID%
%MODULE_INSTANCE_NAME%
%MODULE_INSTANCE_DESCRIPTION% 

Time Markers Display Configuration

...