Skip to content

Latest commit

 

History

2,324 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>

About

Angular component for Chartist.js

Topics

Resources

Stars

124 stars

Watchers

2 watching

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages