npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng2-charts

v6.0.0

Published

Reactive, responsive, beautiful charts for Angular based on Chart.js

Downloads

947,828

Readme

ng2-charts npm version npm downloads Travis CI slack

Beautiful charts for Angular based on Chart.js

Usage & Demo

Samples using ng2-charts

https://valor-software.com/ng2-charts/


Installation

You can install ng2-charts by using the Angular CLI:

ng add ng2-charts

The required packages will be automatically installed, and your app.config.ts will be updated with the required changes to start using the library right away.

Manual install through package managers

  1. You can install ng2-charts using npm:

    npm install ng2-charts --save

    or yarn:

    yarn add ng2-charts --save
  2. You will also need to install and include Chart.js library in your application (it is a peer dependency of this library, more info can be found in the official chart.js documentation)

    npm install chart.js --save

    or with yarn:

    yarn add  chart.js --save
  3. Import the directive in your standalone component:

    import { BaseChartDirective } from 'ng2-charts';
    
    @Component({
      standalone: true,
      imports: [BaseChartDirective],
    })
    export class MyComponent {}
  4. Provide a configuration, typically in your main.ts:

    import { provideCharts, withDefaultRegisterables } from 'ng2-charts';
    
    bootstrapApplication(AppComponent, {
      providers: [provideCharts(withDefaultRegisterables())],
    }).catch((err) => console.error(err));

    Alternatively, include a minimal configuration to reduce the bundle size, eg:

    provideCharts({ registerables: [BarController, Legend, Colors] });

    Or in your AppModule:

    import { provideCharts, withDefaultRegisterables } from 'ng2-charts';
    
    @NgModule({
      providers: [provideCharts(withDefaultRegisterables())],
      bootstrap: [AppComponent],
    })
    export class AppModule {}

Angular version compatibility table

Stackblitz Starting Templates

  • Line Chart - https://stackblitz.com/github/santam85/ng2-charts-line-template?preset=node
  • Pie Chart - https://stackblitz.com/github/santam85/ng2-charts-pie-template?preset=node
  • Bar Chart - https://stackblitz.com/github/santam85/ng2-charts-bar-template?preset=node
  • Doughnut Chart - https://stackblitz.com/github/santam85/ng2-charts-doughnut-template?preset=node
  • Radar Chart - https://stackblitz.com/github/santam85/ng2-charts-radar-template?preset=node
  • Polar Area Chart - https://stackblitz.com/github/santam85/ng2-charts-polar-area-template?preset=node
  • Bubble Chart - https://stackblitz.com/github/santam85/ng2-charts-bubble-template?preset=node
  • Scatter Chart - https://stackblitz.com/github/santam85/ng2-charts-scatter-template?preset=node

API

Chart types

There is one directive for all chart types: baseChart, and there are 8 types of charts: line, bar, radar, pie , polarArea, doughnut, bubble and scatter. You can use the directive on a canvas element as follows:

<canvas baseChart [data]="barChartData" [options]="barChartOptions" [type]="'bar'"> </canvas>

Properties

Note: For more information about possible options please refer to original chart.js documentation

  • type: (ChartType) - indicates the type of chart, it can be: line, bar, radar, pie, polarArea, doughnut or any custom type added to Chart.js
  • data: (ChartData<TType, TData, TLabel>) - the whole data structure to be rendered in the chart. Support different flexible formats and parsing options, see here. In alternative, and depending on the type of your chart, you can use the labels and datasets properties to specify individual options.
  • labels: (TLabel[]) - Datasets labels. It's necessary for charts: line, bar and radar. And just labels (on hover) for charts: polarArea, pie and doughnut. Labels are matched in order with the datasets array.
  • datasets: ( ChartDataset<TType, TData>[]) - Same as the datasets property of the data input. See here for details.
  • options: (ChartOptions<TType>) - chart options (as per chart.js documentation).
  • legend: (boolean = false) - if true, chart legend is shown.

Events

  • chartClick: fires when click on a chart has occurred, returns information regarding active points and labels
  • chartHover: fires when mousemove (hover) on a chart has occurred, returns information regarding active points and labels

Colors

By default, this library uses the colors as defined by Chart.js. If you need more control on colors, eg: generating colors on the fly, see the advanced color palettes.

Dynamic Theming

The ThemeService allows clients to set a structure specifying colors override settings. This service may be called when the dynamic theme changes, with colors which fit the theme. The structure is interpreted as an override, with special functionality when dealing with arrays. Example:

type Theme = 'light-theme' | 'dark-theme';

private _selectedTheme: Theme = 'light-theme';
public get selectedTheme(){
  return this._selectedTheme;
}

public set selectedTheme(value){
  this._selectedTheme = value;
  let overrides: ChartOptions;
  if (this.selectedTheme === 'dark-theme') {
    overrides = {
      legend: {
        labels: { fontColor: 'white' }
      },
      scales: {
        xAxes: [ {
          ticks: { fontColor: 'white' },
          gridLines: { color: 'rgba(255,255,255,0.1)' }
        } ],
        yAxes: [ {
          ticks: { fontColor: 'white' },
          gridLines: { color: 'rgba(255,255,255,0.1)' }
        } ]
      }
    };
  } else {
    overrides = {};
  }
  this.themeService.setColorschemesOptions(overrides);
}

constructor(private themeService: ThemeService<AppChartMetaConfig>){
}

setCurrentTheme(theme: Theme){
  this.selectedTheme = theme;
}

The overrides object has the same type as the chart options object ChartOptions, and wherever a simple field is encountered it replaces the matching field in the options object. When an array is encountered (as in the xAxes and yAxes fields above), the single object inside the array is used as a template to override all array elements in the matching field in the options object. So in the case above, every axis will have its ticks and gridline colors changed.

Troubleshooting

Please follow this guidelines when reporting bugs and feature requests:

  1. Use GitHub Issues board to report bugs and feature requests ( not our email address)
  2. Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.

Thanks for understanding!

License

The MIT License (see the LICENSE file for the full text)

If you like this library and want to say thanks, consider buying me a coffee!