Difference between revisions of "Tabulation setFilterHeaderText"
Line 1: | Line 1: | ||
− | + | ==== Tabulation_setFilterHeaderText ==== | |
− | Tabulation_setFilterHeaderText | + | Set text to Filter header |
+ | |||
+ | '''Syntax''' | ||
+ | |||
+ | Tabulation_setFilterHeaderText(text) | ||
+ | |||
+ | '''Arguments''' | ||
+ | |||
+ | *text: is string | ||
+ | |||
+ | '''Return value''' | ||
+ | |||
+ | empty | ||
+ | |||
+ | '''Example''' | ||
+ | |||
+ | Tabulation_setTableLayout(TableChartLayout_Ifka); | ||
+ | |||
+ | Tabulation_setAbsText("abs"); | ||
+ | |||
+ | Tabulation_setPctText("%"); | ||
+ | |||
+ | Tabulation_setTotalText("Resp."); | ||
+ | |||
+ | Tabulation_setMergeStatisticPctItem(true); | ||
+ | |||
+ | Tabulation_setFilterHeaderText("Filtre"); | ||
+ | |||
+ | |||
+ | |||
+ | addFilter("Age_CALCULATED == [2]"); | ||
+ | |||
+ | createFrequenceDiagram("- - Region"); | ||
+ | |||
+ | *Result: | ||
+ | |||
+ | {| width="200" cellspacing="1" cellpadding="1" border="1" | ||
+ | |- | ||
+ | | Before | ||
+ | | [[Image:AddFilter.jpg]]<br> | ||
+ | |- | ||
+ | | After | ||
+ | | [[Image:Tabulation_setFilterHeaderText.jpg]]<br> | ||
+ | |} | ||
+ | |||
+ | '''Availability''' | ||
+ | |||
+ | Version 5.8.1 | ||
+ | |||
+ | [[Category:Text_setting_functions]] |
Revision as of 09:08, 21 July 2011
Tabulation_setFilterHeaderText
Set text to Filter header
Syntax
Tabulation_setFilterHeaderText(text)
Arguments
- text: is string
Return value
empty
Example
Tabulation_setTableLayout(TableChartLayout_Ifka);
Tabulation_setAbsText("abs");
Tabulation_setPctText("%");
Tabulation_setTotalText("Resp.");
Tabulation_setMergeStatisticPctItem(true);
Tabulation_setFilterHeaderText("Filtre");
addFilter("Age_CALCULATED == [2]");
createFrequenceDiagram("- - Region");
- Result:
Before | |
After |
Availability
Version 5.8.1