Added description to "Synoptic Table"

https://support.d4science.org/issues/17477#note-7

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/performfish-analytics-portlet@182005 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2019-10-11 14:19:55 +00:00
parent 634cf3348e
commit 55418a511d
4 changed files with 6 additions and 2 deletions

View File

@ -325,7 +325,7 @@ public class PerformFishAnnualAnalyticsController {
final SubmitRequestPanel submitRequestPanel = new SubmitRequestPanel("", 1);
String tabTitle = "Synoptic Table";
final Tab tab = viewAnnualController.createTab(tabTitle+" #"+(viewAnnualController.currentNumberOfTab()+1),null,submitRequestPanel);
final Tab tab = viewAnnualController.createTab(tabTitle+" #"+(viewAnnualController.currentNumberOfTab()+1),PerformFishResources.INSTANCE.synopticTable().getText(),submitRequestPanel);
StringBuilder dataInputsFormatter = new StringBuilder();
Map<String, String> performFishResponseMap = thePerformFishResponse.getMapParameters();

View File

@ -392,7 +392,7 @@ public class PerformFishAnalyticsController {
final SubmitRequestPanel submitRequestPanel = new SubmitRequestPanel("", 1);
//submitRequestPanel.getElement().addClassName("ext-horizontal-panel");
String tabTitle = "Synoptic Table"; //CAMEL CASE
final Tab tab = viewController.createTab(tabTitle+" #"+(viewController.currentNumberOfTab()+1), null, submitRequestPanel);
final Tab tab = viewController.createTab(tabTitle+" #"+(viewController.currentNumberOfTab()+1), PerformFishResources.INSTANCE.synopticTable().getText(), submitRequestPanel);
final HTMLPanel panelContainer = submitRequestPanel.getContainerPanel();
final LoaderIcon loaderIcon = new LoaderIcon("Submitting request to "+DataMinerAlgorithms.PERFORMFISH_SYNOPTICTABLE_BATCH.getTitle()+"...");

View File

@ -0,0 +1 @@
In the synoptic table, “performance” refers to the quality of KPI batch value over the performeter categories (i.e. good, normal, bad). “Percentage” refers to the KPI value, scaled between 0 and 100, of the batch data analysed in the VRE.

View File

@ -102,4 +102,7 @@ public interface PerformFishResources extends ClientBundle {
@Source("Farm_CORRELATION")
public TextResource farm_CORRELATION();
@Source("BatchFarm_SYNOPTICTABLE")
public TextResource synopticTable();
}