Difference between revisions of "APEX with d3.js"

From Ittichai Chammavanijakul's Wiki
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
References:
 
References:
* http://ba6.us/d3js_application_express_basic_dynamic_action
+
* [http://ba6.us/d3js_application_express_basic_dynamic_action Application Express Dynamic Actions with d3.js]
  
Step 1: Create Application Process
+
Step 1: Create Application Process.
  
 
Step 2: Copy the content to a file, for example, "d3.js" and upload it to APEX workspace. Somehow, the script cannot be referred using  
 
Step 2: Copy the content to a file, for example, "d3.js" and upload it to APEX workspace. Somehow, the script cannot be referred using  
 +
<pre>
 
<script src="http://d3js.org/d3.v2.js"></script>
 
<script src="http://d3js.org/d3.v2.js"></script>
 
+
</pre>
 
Use this instead
 
Use this instead
 +
<pre>
 
<script src="#WORKSPACE_IMAGES#d3.js"></script>
 
<script src="#WORKSPACE_IMAGES#d3.js"></script>
 +
</pre>
  
 
Step 3: Copy and paste the code into a region.
 
Step 3: Copy and paste the code into a region.
 +
 +
[[Category: D3JS]]
 +
[[Category: APEX]]

Latest revision as of 11:04, 30 August 2014

References:

Step 1: Create Application Process.

Step 2: Copy the content to a file, for example, "d3.js" and upload it to APEX workspace. Somehow, the script cannot be referred using

<script src="http://d3js.org/d3.v2.js"></script>

Use this instead

<script src="#WORKSPACE_IMAGES#d3.js"></script>

Step 3: Copy and paste the code into a region.