An implementation of @swimlane/ngx-charts for Ontimize Web.
Ontimize Web Charts module is stored in github{:target="_blank"} where you can also see/add todos, bugs or feature requests in the issues{:target="_blank"} section.
Check out examples demo:
npm install ontimize-web-ngx-charts --save
Finally, you can use ontimize-web-ngx-charts in your Ontimize Web project.
You must add the module styles definition in your '.angular.json' file styles array:
...
"styles": [
...
"../node_modules/ontimize-web-ngx-charts/styles.scss",
....
],
...
Include the library chart module into your app in the module where you want to use it.
...
import { OChartModule } from 'ontimize-web-ngx-charts';
...
@NgModule({
imports: [
OChartModule,
/* other imports */
],
declarations: ...
providers: ...
})
export class ExampleModule { }