Difference between revisions of "Diagram 2"

From Catglobe Wiki
Jump to: navigation, search
Line 15: Line 15:
 
<br>&nbsp;'''3. Go to the Axis set tab: Create a new axis set'''&nbsp;<br>&nbsp;&nbsp; '''3.1 Create a new axis set<br>'''
 
<br>&nbsp;'''3. Go to the Axis set tab: Create a new axis set'''&nbsp;<br>&nbsp;&nbsp; '''3.1 Create a new axis set<br>'''
  
'''[[Image:Create new axis.JPG|328x477px]]'''&nbsp;&lt;span id="fck_dom_range_temp_1251962342404_791" /&gt;&lt;span id="fck_dom_range_temp_1251962342404_702" /&gt;&lt;span id="fck_dom_range_temp_1251962342404_473" /&gt;&lt;span id="fck_dom_range_temp_1251962342404_758" /&gt;&lt;span id="fck_dom_range_temp_1251962342404_123" /&gt;&lt;span id="fck_dom_range_temp_1251962342420_48" /&gt;  
+
'''[[Image:Create new axis.JPG|328x477px]]'''&nbsp;
  
 
&nbsp;&nbsp; '''3.2 Input value to the new axis set'''  
 
&nbsp;&nbsp; '''3.2 Input value to the new axis set'''  
Line 33: Line 33:
 
'''<u>Step 2.&nbsp;<br></u>'''&nbsp;'''1. Open the Data Cache in Data Cache list (Tools/ Data / Data Caches)'''<br>&nbsp;'''2. In the Data Cache tab'''<br>&nbsp;&nbsp; a. Select Column’s type then click “Add Column” button to insert a new Custom column.<br>- A new Custom column is used to define the month of EndDate.<br>- Data type&nbsp;: Number <br>- Save numbers&nbsp;: 1,2,3,4,5,6,7,8,9,10,11 and 12.<br>1: the month of the EndDate is January.<br>2: the month of the EndDate is February.<br>3: the month of the EndDate is March.<br>4: the month of the EndDate is April.<br>5: the month of the EndDate is May.<br>6: the month of the EndDate is June.<br>7: the month of the EndDate is July.<br>8: the month of the EndDate is August.<br>9: the month of the EndDate is September.<br>10: the month of the EndDate is October.<br>11: the month of the EndDate is November.<br>12: the month of the EndDate is December.<br>
 
'''<u>Step 2.&nbsp;<br></u>'''&nbsp;'''1. Open the Data Cache in Data Cache list (Tools/ Data / Data Caches)'''<br>&nbsp;'''2. In the Data Cache tab'''<br>&nbsp;&nbsp; a. Select Column’s type then click “Add Column” button to insert a new Custom column.<br>- A new Custom column is used to define the month of EndDate.<br>- Data type&nbsp;: Number <br>- Save numbers&nbsp;: 1,2,3,4,5,6,7,8,9,10,11 and 12.<br>1: the month of the EndDate is January.<br>2: the month of the EndDate is February.<br>3: the month of the EndDate is March.<br>4: the month of the EndDate is April.<br>5: the month of the EndDate is May.<br>6: the month of the EndDate is June.<br>7: the month of the EndDate is July.<br>8: the month of the EndDate is August.<br>9: the month of the EndDate is September.<br>10: the month of the EndDate is October.<br>11: the month of the EndDate is November.<br>12: the month of the EndDate is December.<br>
  
&nbsp;&nbsp; '''2.2 Put the CGScript which defines Current Year and Last Year'''
+
&nbsp;&nbsp; '''2.2 Put the CGScript which defines Current Year and Last Year''' '''[[Image:Insert script.JPG]]'''  
'''[[Image:Insert_script.JPG]]'''
 
  
 +
<br><span id="1251963061441S" style="display: none">&nbsp;</span>- Input Name of the Custom column, this name will be an option of the axis set.<br>- Insert the CGSript.<br>// CGScript<br>array a = stringSplit(EndDate, " ");<br>string s = a[0];<br>a = stringSplit(s, "/");<br>number endDateYear = convertToNumber(a[2]);<br>number endDateMonth = convertToNumber(a[0]);<br>number endDateDay = convertToNumber(a[1]);<br>return endDateMonth;<br>//End Script
  
<span id="1251963061441S" style="display: none">&nbsp;</span>- Input Name of the Custom column, this name will be an option of the axis set.<br>- Insert the CGSript.<br>// CGScript<br>array a = stringSplit(EndDate, " ");<br>string s = a[0];<br>a = stringSplit(s, "/");<br>number endDateYear = convertToNumber(a[2]);<br>number endDateMonth = convertToNumber(a[0]);<br>number endDateDay = convertToNumber(a[1]);<br>return endDateMonth;<br>//End Script
+
&nbsp;'''3. Go to the Axis set tab: Create a new axis set <br>&nbsp;&nbsp; a. Create a new axis set<br>[[Image:Create_new_axis.JPG]]'''

Revision as of 09:33, 3 September 2009

Diagram 2.JPG

The diagram above is a cross diagram which is made by crossing 2 axes together:
- The X-axis has 12 options: Jan, Feb, Mar, … Dec
- The Y- axis has 2 options: This Year and Last Year. Calculations for these options are based on values stored in a custom column in the data cache. These values, which are calculated on corresponding values in the EndDate column, indicate whether an RPQ was finished in this year or last year.

The following steps show you how to create the above diagram

Step 1. Create a new axis set in DCS list based on the EndDate column
 1. Open the Data Cache in Data Cache list (Tools/Data/Data Caches).
 2. In the Data Cache tab 
   2.1 Select Column’s type then click “Add Column” button to insert a new Custom column
Add custom.JPG 

- A new Custom column is used to define the Quarter which this record is related to the current day in the system.
- Data type : Number
- Save numbers : 0,1 and null.
   0 : if the year of the EndDate column is the same with the current year in the system.
   1 : if the year of the EndDate column is in the previous year of current year in the system.
   Null : if the year of the EndDate column is in other years.

   2.2 Put the CGScript which defines Current Year and Last Year
Insert script.JPG 

- Input Name of the Custom column, this name will be an option of the axis set.
- Insert the CGSript.
// CGScript
array a = stringSplit(EndDate, " ");
string s = a[0];
a = stringSplit(s, "/");
number endDateYear = convertToNumber(a[2]);
number endDateMonth = convertToNumber(a[0]);
number endDateDay = convertToNumber(a[1]);
array today = getDateTime();
number todayYear = today[DateTime_Year];
number todayMonth = today[DateTime_Month];
number IsLastYear = 1;
number IsThisYear = 0;
if (endDateYear == todayYear)
return IsThisYear;
if (endDateYear == todayYear-1)
return IsLastYear;
//End Script


 3. Go to the Axis set tab: Create a new axis set 
   3.1 Create a new axis set

Create new axis.JPG 

   3.2 Input value to the new axis set

Input value.JPG 

Axis math – base, Axis pct – base, Option value : will be used the Custom column’s name.

For example :

Example.JPG 

 

 4. Save the Data cache.

Step 2. 
 1. Open the Data Cache in Data Cache list (Tools/ Data / Data Caches)
 2. In the Data Cache tab
   a. Select Column’s type then click “Add Column” button to insert a new Custom column.
- A new Custom column is used to define the month of EndDate.
- Data type : Number
- Save numbers : 1,2,3,4,5,6,7,8,9,10,11 and 12.
1: the month of the EndDate is January.
2: the month of the EndDate is February.
3: the month of the EndDate is March.
4: the month of the EndDate is April.
5: the month of the EndDate is May.
6: the month of the EndDate is June.
7: the month of the EndDate is July.
8: the month of the EndDate is August.
9: the month of the EndDate is September.
10: the month of the EndDate is October.
11: the month of the EndDate is November.
12: the month of the EndDate is December.

   2.2 Put the CGScript which defines Current Year and Last Year Insert script.JPG


- Input Name of the Custom column, this name will be an option of the axis set.
- Insert the CGSript.
// CGScript
array a = stringSplit(EndDate, " ");
string s = a[0];
a = stringSplit(s, "/");
number endDateYear = convertToNumber(a[2]);
number endDateMonth = convertToNumber(a[0]);
number endDateDay = convertToNumber(a[1]);
return endDateMonth;
//End Script

 3. Go to the Axis set tab: Create a new axis set
   a. Create a new axis set
Create new axis.JPG