https://github.com/meta-magic/d3clone
https://github.com/meta-magic/d3clone
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/meta-magic/d3clone
- Owner: meta-magic
- Created: 2019-01-24T10:02:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-24T11:13:14.000Z (almost 7 years ago)
- Last Synced: 2025-01-09T07:14:03.140Z (about 1 year ago)
- Language: TypeScript
- Size: 170 KB
- Stars: 0
- Watchers: 3
- 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 { }
```