Download presentation
Presentation is loading. Please wait.
Published byRobyn Powers Modified over 9 years ago
2
Pablo del Castro Galán GS-ASE-EDS 2014/05/06 EDMS Doc. 13779322 EDMS
3
Charts in APEX Since the version 3.0 (2007) graphic capabilities have been included in Oracle Application Express (APEX) using AnyChart engine 3.0, from APEX 4.x AnyChart engine 5.0 is used Anychart is a 3 rd party product embedded in APEX (http://www.anychart.com)http://www.anychart.com 2014/05/06 EDMS Doc. 13779323
4
Chart Types 2014/05/06 EDMS Doc. 13779324
5
Chart Features Custom Legends Save chart as Image Interactivity options (hoverable, selectable data point, drill down …) And many more features 2014/05/06 EDMS Doc. 13779325 Custom labels Custom tooltips Custom colours Custom data point attributes Multiple Axis Axis Inversion Axis Positioning Logarithmic Scales Date time Scale
6
Charts in Flash and HTML5 Anychart can generate charts either in Flash or JavaScript (HTML5) Easy to change between the two. Some old browsers do not know HTLM5 (external frames embedded in INFOR EAM) Some devices or browsers do not manage Flash 2014/05/06 EDMS Doc. 13779326
7
APEX Wizard (I) Create Page Chart 2014/05/06 EDMS Doc. 13779327
8
APEX Wizard (II) 2014/05/06 EDMS Doc. 13779328
9
APEX Wizard (III) 2014/05/06 EDMS Doc. 13779329
10
Chart Attributes (I) 2014/05/06 EDMS Doc. 137793210
11
Chart Attributes (II) 2014/05/06 EDMS Doc. 137793211
12
Chart Attributes (III) 2014/05/06 EDMS Doc. 137793212
13
Chart Series 2014/05/06 EDMS Doc. 137793213
14
XML Interface (I) AnyChart is driven by XML interface. AnyChart engine processes the content in the XML and generate the chart. This XML can be generated using whatever language, however APEX offers a wizard and its own interface. All graphing happens on the client side, no rendering on the server side 2014/05/06 EDMS Doc. 137793214
15
XML Interface (II) 2014/05/06 EDMS Doc. 137793215 No DATA message, animation, fonts http://www.anychart.com/products/anychart/docs/xmlReference/index.html Titles, labels, legend, grids … Style, effects, tooltips.. #DATA# Extra labels Oops, how to insert new nodes here ?
16
Generating your own #DATA# (I) 2014/05/06 EDMS Doc. 137793216 1. Delete the #DATA# tag in XML and replace it by our own hidden item 2. Create a computation that would write the new XML in our item 3. Write the code in PL/SQL which generates the proper XML
17
Generating your own #DATA# (II) 2014/05/06 EDMS Doc. 137793217 The sum of the category on the top of the bar
18
Drill Down The first column of the query for an Chart is called LINK (APEX URL). It has to exist 2014/05/06 EDMS Doc. 137793218 Current Application ID Current Session ID Parameters Page 'f?p='|| :APP_ID ||':1315:'|| :APP_SESSION ||'::::P1315_SECTION_LEADER,P1315_OBJ_OBTYPE,P1315_OBJ_CLASS: &P1310_SECTION_LEADER.,P,SFRIA', Parameters’ Names Parameters’ Values
19
Pivot and Unpivot Operators The pivot and unpivot operators are new in Oracle 11 G and they are widely used for reports and BI A pivot query is meant to transpose rows into columns while the unpivot sentence does the opposite, transpose columns into rows. 2014/05/06 EDMS Doc. 137793219
20
Pivoted Table Format needed for a bar stacked chart Pivot Operator 2014/05/06 EDMS Doc. 137793220 SELECT... FROM... PIVOT [XML] WHERE … defines the columns to be aggregated (pivot is an aggregate operation) defines the columns to be grouped and pivoted defines the filter for the column(s) in the pivot_for_clause Original Table (SUM (NUM) FOR EVT_TYPE IN (‘JOB’, ‘PPM’) ) ( pivot_clause pivot_for_clause pivot_in_clause )
21
Unpivot Operator 2014/05/06 EDMS Doc. 137793221 SELECT... FROM... UNPIVOT [INCLUDE| EXCLUDE NULLS] WHERE … ( unpivot_clause unpivot_for_clause unpivot_in_clause ) the list of pivoted columns (not values) to be unpivoted. ( VALUE FOR LABEL IN (WO_WITH,WO_WITHOUT ) ) a column name column to represent the unpivoted values the name for the column that will result from our unpivot query Original Table Unpivoted Table Format needed for a pie chart
22
Running Totals Analytic Function (arguments) OVER ( [PARTITION_BY_CLAUSE] [ORDER_BY_CLAUSE] ) 2014/05/06 EDMS Doc. 137793222 SELECT SUM ( DECODE (NUM, NULL, 0, NUM) ) OVER (ORDER BY FECHA) AS REALISE FROM TABLE
23
EAM Light Dashboard 2014/05/06 EDMS Doc. 137793223
24
Fire Brigade Dashboard (I) 2014/05/06 EDMS Doc. 137793224
25
Fire Brigade Dashboard (II) 2014/05/06 EDMS Doc. 137793225
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.