Skip to content

Latest commit

 

History

History
94 lines (72 loc) · 2 KB

README.md

File metadata and controls

94 lines (72 loc) · 2 KB


Amexio
Amexio D3-Chart v0.1.7

Amexio (Angular MetaMagic EXtensions for Inputs and Outputs) is a rich set of  140+ Angular (4/5/6) Amexio D3 Charts support 13 D3 Charts with Amexio Drillable Charts option


Angular CLI - Installation

Overview

The Angular CLI is a tool to initialize, develop, scaffold and maintain Angular applications

Getting Started

To install the Angular CLI:

npm install -g @angular/cli

Generating and serving an Angular project via a development server Create and run a new project:

ng new my-project
cd my-project
ng serve

Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

For More on Angular CLI commands click on the link.

Amexio D3 Chart - Installation

To install this library, follow the steps given below:

To install the Amexio Chart-d3:

npm install amexio-chart-d3 --save

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import {FormsModule} from "@angular/forms";
import { AppComponent } from './app.component';

// To import Amexio Chart D3 :-
import { AmexioChartD3Module } from 'amexio-chart-d3';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    AmexioChartD3Module,
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }