0.3.0 • Published 6 years ago

ng-d3plot v0.3.0

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

Response plots with D3

Build Status

D3js based plotting for Angular. This module focuses on easy usage and responsiveness. It provides plots in a custom or default 4:3 aspect ratio, at a dynamic width of 100% parents width. On window resize the plots scale, and after resize (200ms) they redraw.

Animation (view on github)

Installation

npm i ng-d3plot
#or
yarn add ng-d3plot

Usage

In your root (or whatever) module import the needed modules.

import {
  HistogramModule,
  LineChartModule,
  PieModule
  TimeSeriesModule
} from 'ng-d3plot';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    HistogramModule,
    LineChartModule,
    PieModule,
    TimeSeriesModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

In the modules component templates use the tags as follows

<d3p-histogram [data]="data" [config]="config"></d3p-histogram>
<d3p-line-chart [data]="dataLine" [config]="configLine"></d3p-line-chart>
<d3p-pie [data]="data" [config]="config"></d3p-pie>
<d3p-time-series [data]="data" [config]="config"></d3p-time-series>

Where the @Input()s are of type.

dataconfig
HistogramArray<number>Config & { ticks?: number }
Line ChartArray<{x: number, y: number}>Config
Pie ChartArray<{label: string, value: number}>Config & { color?: string[] }
Time SeriesArray<{date: Date, value: number}>Config

the basic Config interface looks like

interface Config {
  xLabel?: string;
  yLabel?: string;
  title?: string;
  aspectRatio?: number;
}

TBD

It is planned to add simple map (country: value).

Get in contact

0.3.0

6 years ago

0.2.8

6 years ago

0.2.7

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago