Embed Oracle Analytics Content into a Custom Application That Doesn’t Use Oracle JET
If the custom application uses a technology other than Oracle JET, then the embedded Oracle Analytics content adds its Oracle JET distribution and all additional components into the page.
If the Developer option isn't displayed in the workbook's Menu, then you need to enable it. See Enable Oracle Analytics Developer Options.
Complete Example
<!DOCTYPE html>
<html dir="ltr">
<head>
<title>AJAX Standalone Demo</title>
<script src="https://<instance>/public/dv/v1/embedding/standalone/embedding.js""
type="text/javascript">
</script>
</head>
<body>
<h1>AJAX Standalone Demo</h1>
<div style="position: absolute; width: calc(100% - 40px); height: calc(100% -
120px)" >
<oracle-dv project-path="/shared/embed/test-embed">
</oracle-dv>
</div>
<script>
requirejs(['knockout', 'ojs/ojcore', 'ojs/ojknockout', 'ojs/ojcomposite', 'jet-composites/oracle-dv/loader'], function(ko) { ko.applyBindings();
});
</script
</body
</html