https://github.com/meta-magic/amexio.d3.github.io
https://github.com/meta-magic/amexio.d3.github.io
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/meta-magic/amexio.d3.github.io
- Owner: meta-magic
- Created: 2019-01-24T08:32:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-24T09:19:31.000Z (almost 7 years ago)
- Last Synced: 2025-02-26T14:25:50.324Z (11 months ago)
- Language: TypeScript
- Size: 155 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Amexio D3-Chart v0.1.1
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:
```bash
npm install -g @angular/cli
```
Generating and serving an Angular project via a development server Create and run a new project:
```bash
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](https://github.com/angular/angular-cli/wiki) click on the link.
## Amexio D3 Chart - Installation
To install this library, follow the steps given below:
To install the Amexio Chart-d3:
```bash
npm install amexio-chart-d3 --save
```
and then from your Angular `AppModule`:
```typescript
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 { }
```