Components
This library was generated with Angular CLI version 11.0.9.
Components inside lib
Inside library You can find two components:
lib-diagram
lib-status-bar
Using lib-diagram
Install package:
npm i @obliczeniowo/elementary
Import module:
import { ComponentsModule } from '@obliczeniowo/elementary';
...
imports: [
BrowserModule,
AppRoutingModule,
ComponentsModule // here is import
],
Inside of your own component:
import { Component } from '@angular/core';
import { ColorHSV, ColorRGB } from '@obliczeniowo/elementary';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
})
export class AppComponent {
title = 'Diagram';
xLabel = 'xLabel';
yLabel = 'yLabel';
diagramData = {
'key 1': 100,
'key 2': 200,
'key 3': 1500,
'key 4': 1,
'key 5': 2,
'key 6': 145,
'key 7': 200,
'key 8': 340,
'key 9': 885,
'key 10': 1234,
'key 11': 450,
'key 12': 800,
'key 13': 3900,
'key 14': 1300,
'key 15': 1200,
'key 16': 2500,
'key 17': 1300,
'key 18': 1200,
'key 19': 2500,
};
colorFunction = (
index: number,
dataLength: number,
value: number,
max: number
): ColorRGB => {
return ColorHSV.createColorHSV(
180 - (180 * value) / max,
0.5,
255
).convertToRGB();
}
}
In HTML:
<lib-diagram
[diagramData]="diagramData"
[diagramTitle]="title"
[xLabel]="xLabel"
[yLabel]="yLabel"
[colorFunction]="colorFunction"
>
</lib-diagram>
Code scaffolding
Run ng generate component component-name --project components
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project components
.
Note: Don't forget to add --project components
or else it will be added to the default project in your angular.json
file.
Build
Run ng build components
to build the project. The build artifacts will be stored in the dist/
directory.
Publishing
After building your library with ng build components
, go to the dist folder cd dist/components
and run npm publish
.
Running unit tests
Run ng test components
to execute the unit tests via Karma.
Further help
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.