0.3.1 • Published 6 years ago

@abbica/charts v0.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

abbica-charts - Abbica charts library

Demo

View all the directives in action at https://solloviovo.github.io/abbica-charts

Dependencies

  • Angular (requires Angular 2 or higher, tested with 2.0.0)

Installation

Install above dependencies via npm.

Now install @abbica/charts via:

npm install --save @abbica/charts

SystemJS

Note:If you are using SystemJS, you should adjust your configuration to point to the UMD bundle. In your systemjs config file, map needs to tell the System loader where to look for @abbica/charts:

map: {
  '@abbica/charts': 'node_modules/@abbica/charts/bundles/charts.umd.js',
}

Once installed you need to import the main module:

import { LibModule } from '@abbica/charts';

The only remaining part is to list the imported module in your application module. The exact method will be slightly different for the root (top-level) module for which you should end up with the code similar to (notice LibModule .forRoot()):

import { LibModule } from '@abbica/charts';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [LibModule.forRoot(), ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import LibModule:

import { LibModule } from '@abbica/charts';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [LibModule, ...], 
})
export class OtherModule {
}

Usage

License

Copyright (c) 2017 Oleksandr Soloviov. Licensed under the MIT License (MIT)

0.3.1

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.0.14

6 years ago

0.0.13

6 years ago

0.0.12-b

6 years ago

0.0.12

6 years ago

0.0.11

6 years ago

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago