Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p1n2o/ngx-oracle-dv
Angular component to embed visualizations from Oracle Analytics Cloud into your Angular application.
https://github.com/p1n2o/ngx-oracle-dv
angular data-visualization embed oracle-analytics-cloud oracle-visualization
Last synced: 21 days ago
JSON representation
Angular component to embed visualizations from Oracle Analytics Cloud into your Angular application.
- Host: GitHub
- URL: https://github.com/p1n2o/ngx-oracle-dv
- Owner: P1N2O
- Created: 2023-06-30T09:07:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-04T07:06:39.000Z (over 1 year ago)
- Last Synced: 2024-10-23T08:50:08.277Z (2 months ago)
- Topics: angular, data-visualization, embed, oracle-analytics-cloud, oracle-visualization
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/ngx-oracle-dv
- Size: 115 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NGX Oracle Data Visualization
The NGX Oracle Data Visualization module allows you to seamlessly integrate Oracle Analytics Visualizations into your angular applications.
### Installation
To install the ngx-oracle-dv module, follow these steps:
1. Install `ngx-oracle-dv` module in your project
```
npm install ngx-oracle-dv
```2. Next, you need to add the Oracle Analytics Visualizations embedding script to the `index.html` file of your project. Add the following code snippet within the `` section:
``````
3. Import the NgxOracleDvModule into your application module. Open the module file (e.g., `app.module.ts`) and add the import statement:
```
import { NgxOracleDvModule } from 'ngx-oracle-dv';
...
@NgModule({
...
imports: [
...
NgxOracleDvModule
],
...
})
```4. Finally, you can use the `ngx-oracle-dv` component within your project's HTML files.
Place the following code snippet wherever you want to display the visualization:
``````
You can also customize the component's behavior by providing additional properties like `activePage`, `activeTabId`, `filters`, and `projectOptions`. Refer to the **"Props"** section below for more details.
**Note:** This component requires Single Sign-On to be enabled between Oracle Analytics Cloud and your application. During testing, you can run the application in the same browser where you are signed into Oracle Analytics Cloud to bypass the Single Sign-On requirement.
### Props
`projectPath` (required):
Specifies the repository path of the workbook that you want to render.`activePage` (optional):
Specifies whether a canvas or insight other than the default is rendered. Valid values are 'canvas' and 'insight'.`activeTabId` (optional):
Specifies the ID of the canvas or the story page that you want to show. It can be either a string or a number.`filters` (optional):
Specifies the filters that you want to apply to the visualization. It can be either a string or an array of strings.`projectOptions` (optional):
Specifies the project options that you want to apply to the visualization. It can be either a string or an array of strings.These properties allow you to customize the displayed visualization according to your requirements.
### Contributors
Manuel Pinto [([email protected])](mailto:[email protected])Joella Fernandes [([email protected])](mailto:[email protected])