ng-chartist

Chartist component for Angular


Keywords
angular, chartist, charting, charts, charting-library, chartistjs, typescript
License
Apache-2.0
Install
npm install ng-chartist@1.1.1

Documentation

Angular Chartist

Installation

npm install ng-chartist chartist
pnpm add ng-chartist chartist

Usage

import { ChartistModule } from "ng-chartist";
import { NgModule } from "@angular/core";

@NgModule({
  imports: [ChartistModule],
})
export class SomeModule {}
import { Component } from "@angular/core";
import { Configuration } from "ng-chartist";

@Component()
export class SomeComponent {
  public configuration: Configuration = {
    // Specify the type of chart and the rest of the config will be typed
    type: "Bar",
    // Required
    data: {},
    // Optional
    options: {},
    // Optional
    responsiveOptions: {},
  };
}
<x-chartist [configuration]="configuration"></x-chartist>