Difference between revisions of "Data Visualisation Options"

From All n One's bxp software Wixi

Jump to: navigation, search
(Created page with "Data Visualisations are a very powerful tool. The take any closed question (list/menu, radio button, check box, number list), counts up the total answers and can then draw ba...")
 
Line 13: Line 13:
 
By default both bar and pie chart will be shown.  You can turn one or both off if required.
 
By default both bar and pie chart will be shown.  You can turn one or both off if required.
  
# blShowQuestion=false;  //Hides the entire question
+
# blShowQuestion=false;  //Hides the entire question <br/>
 +
# blShowData=fales;  //Hides the data elements and just leaves the visualisations<br/>
 +
# blShowBar=false;  //Hides just the bar chart element<br/>
 +
# blShowPie=false;  //Hides just the Pie chart element
 +
 
 +
 
 +
 
 +
== Listing ==
 +
 
 +
With lists with lots of items in them, the sorting of the elements can become very important
 +
 
 +
# strListing=AlphabeticAZ  // Sort the answers alphabetically from 0 to 9, A to Z
 +
# strListing=AlphabeticZA  // Sort the answers alphabetically from Z to A, 9 to 0
 +
# strListing=QuantityLeastMost  // Sort the answers, with the least frequently occuring at the top.  Each amount item is alpha sorted as well.
 +
# strListing=QuantityMostLeast  // Sort the answers, with the most frequently occuring at the top.  Each amount item is alpha sorted as well.
 +
 
  
  
# blShowData=fales;  //Hides the data elements and just leaves the visualisations
+
== Limit ==
  
  
# blShowBar=false; //Hides just the bar chart element
+
For VERY long lists, it may be more advisable to limit to a specific amount of answers, like the top 10. The limit option allows you to specify exactly how many items to limit to.
  
  
# blShowPie=false;  //Hides just the Pie chart element
+
# strLimit=10;  //This will limit to the top 10 answers.

Revision as of 15:42, 23 March 2012

Data Visualisations are a very powerful tool. The take any closed question (list/menu, radio button, check box, number list), counts up the total answers and can then draw bar charts and pie charts based on those figures.


Sometimes however the default representations of some items are too limited, so BE allows you to override the default displays with your own customisations.

The customisations are entered in a single line of data separated by commas.

Here are the options currently available.


1 Show | Hide Elements

By default both bar and pie chart will be shown. You can turn one or both off if required.

  1. blShowQuestion=false; //Hides the entire question
  2. blShowData=fales; //Hides the data elements and just leaves the visualisations
  3. blShowBar=false; //Hides just the bar chart element
  4. blShowPie=false; //Hides just the Pie chart element


2 Listing

With lists with lots of items in them, the sorting of the elements can become very important

  1. strListing=AlphabeticAZ // Sort the answers alphabetically from 0 to 9, A to Z
  2. strListing=AlphabeticZA // Sort the answers alphabetically from Z to A, 9 to 0
  3. strListing=QuantityLeastMost // Sort the answers, with the least frequently occuring at the top. Each amount item is alpha sorted as well.
  4. strListing=QuantityMostLeast // Sort the answers, with the most frequently occuring at the top. Each amount item is alpha sorted as well.


3 Limit

For VERY long lists, it may be more advisable to limit to a specific amount of answers, like the top 10. The limit option allows you to specify exactly how many items to limit to.


  1. strLimit=10; //This will limit to the top 10 answers.