JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 102
  • Score
    100M100P100Q79674F
  • License MIT

Response plots for Angular with D3

Package Exports

  • ng-d3plot

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ng-d3plot) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.

data config
Histogram Array<number> Config & { ticks?: number }
Line Chart Array<{x: number, y: number}> Config
Pie Chart Array<{label: string, value: number}> Config & { color?: string[] }
Time Series Array<{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