Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Path to place D3 file in OBIEE 12c

Hi.,
Please provide the path where we need to place D3 js file to create D3 Visulization in OBIEE 12c or please provide the D3 deployment steps in 12c.
in Obiee 11g placed under instances/instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/analyticsRes
Thanks
Answers
-
@Gianni Ceresa wrote a blog about this some time ago.
0 -
As Joel said "analyticsRes" is the clean simple way of doing it.
An alternative is to use the D3 which is already included in your OBIEE. VA/DV uses D3 and has it (it's part of the RequireJs config), so you can also load it from there. It's probably a older version (v3, not v4) and the path is a bit weird (look at it with your browser developer extension to see all the loaded JS files when you use VA/DV).
You can also import the RequireJs from VA/DV and use that one to automatically load D3.
0 -
I followed your blog to deploy d3 under analyticsRes., how can we refer this in Narrative View
just <script src="d3/d3.js"></script> this will work
Thanks
0 -
You need to use an absolute path as d3 isn't deployed next to the analysis.
If your "analyticsRes" folder is deployed as /analyticsRes then you need to use /analyticsRes/d3/d3.js (assuming you created a d3 folder and put the file inside).
But yes, with that kind of syntax you load d3, then you have to use it and that's a different thing
0