Skip to content

Repository files navigation

chartjs-node-canvas

GitHubcodecovNPMpackagephobia publish

A Node JS renderer for Chart.js using canvas.

Provides and alternative to chartjs-node that does not require jsdom (or the global variables that this requires) and allows chartJS as a peer dependency, so you can manage its version yourself.

Contents

  1. Installation
  2. Node JS version
  3. Features
  4. Limitations
  5. API
  6. Usage
  7. Known Issues

Installation

npm i chartjs-node-canvas chart.js

Node JS version

This is limited by the upstream dependency canvas.

See the GitHub Actions yml section for the current supported Node version(s). You will need to do a npm rebuild to rebuild the canvas binaries.

Charts.JS version

Currently supports 3.x.x. You are given the ability to maintain the version yourself via peer dependency, but be aware that going above the specified version might result in errors.

Features

  • Supports all Chart JS features and charts.
  • No heavy DOM virtualization libraries, thanks to a pull request to chart.js allowing it to run natively on node, requiring only a Canvas API.
  • Chart JS is a peer dependency, so you can bump and manage it yourself.
  • Provides a callback with the global ChartJS variable, so you can use the Global Configuration.
  • Uses (similar to) fresh-require for each instance of ChartJSNodeCanvas, so you can mutate the ChartJS global variable separately within each instance.
  • Support for custom fonts.

Limitations

Animations

Chart animation (and responsive resize) is disabled by this library. This is necessary since the animation API's required are not available in Node JS/canvas-node (this is not a browser environment after all).

This is the same as:

Chart.defaults.animation=false;Chart.defaults.responsive=false;

SVG and PDF

For some unknown reason canvas requires use of the sync API's to use SVG's or PDF's. This libraries which support these are:

You also need to set the canvas type when you initialize the ChartJSNodeCanvas instance like the following:

const{ ChartJSNodeCanvas }=require('chartjs-node-canvas');constchartJSNodeCanvas=newChartJSNodeCanvas({type: 'svg',width: 800,height: 600});

API

See the API docs.

Usage

const{ ChartJSNodeCanvas }=require('chartjs-node-canvas');constwidth=400;//pxconstheight=400;//pxconstbackgroundColour='white';// Uses https://www.w3schools.com/tags/canvas_fillstyle.aspconstchartJSNodeCanvas=newChartJSNodeCanvas({ width, height, backgroundColour});(async()=>{constconfiguration={
... // See https://www.chartjs.org/docs/latest/configuration};constimage=awaitchartJSNodeCanvas.renderToBuffer(configuration);constdataUrl=awaitchartJSNodeCanvas.renderToDataURL(configuration);conststream=chartJSNodeCanvas.renderToStream(configuration);})();

Also see the example and the generated image.

Memory Management

Every instance of ChartJSNodeCanvas creates its own canvas. To ensure efficient memory and GC use make sure your implementation creates as few instances as possible and reuses them:

// Re-use one service, or as many as you need for different canvas size requirementsconstsmallChartJSNodeCanvas=newChartJSNodeCanvas({width: 400,height: 400});constbigCChartJSNodeCanvas=newChartJSNodeCanvas({width: 2000,height: 2000});// Expose just the 'render' methods to downstream code so they don't have to worry about life-cycle management.exports={renderSmallChart: (configuration)=>smallChartJSNodeCanvas.renderToBuffer(configuration),renderBigChart: (configuration)=>bigCChartJSNodeCanvas.renderToBuffer(configuration)};

Custom Charts

Just use the ChartJS reference in the callback:

constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,chartCallback: (ChartJS)=>{// New chart type example: https://www.chartjs.org/docs/latest/developers/charts.htmlclassMyTypeextendsChart.DatasetController{}Chart.register(MyType);}});

Global Config

Just use the ChartJS reference in the callback:

constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,chartCallback: (ChartJS)=>{// Global config example: https://www.chartjs.org/docs/latest/configuration/ChartJS.defaults.elements.line.borderWidth=2;}});

Custom Fonts

Just use the registerFont method:

constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,chartCallback: (ChartJS)=>{// Just example usageChartJS.global.defaultFontFamily='VTKS UNAMOUR';}});// Register before rendering any chartschartJSNodeCanvas.registerFont('./testData/VTKS UNAMOUR.ttf',{family: 'VTKS UNAMOUR'});

See the node-canvas docs and the chart js docs.

Background color

Due to the many issues and question this includes a convenience plugin to fill the otherwise transparent background. It uses the fillStyle canvas API;

constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,backgroundColour: 'purple'});

Loading plugins

This library is designed to make loading plugins as simple as possible. For legacy plugins, you should just be able to add the module name to the appropriate array option and the library handles the rest.

The Chart.JS plugin API has changed over time and this requires compatibility options for the different ways plugins have been historically loaded. ChartJS Node Canvas has a plugin option with specifiers for the different ways supported plugin loading methods are handled. If you are not sure about your plugin, just try the different ones until your plugin loads:

Newer plugins

Let ChartJSNodeCanvas manage the lifecycle of the plugin itself, each instance will have a separate instance of the plugin:

constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,plugins: {modern: ['chartjs-plugin-annotation']}});

You want to share the plugin instance, this may cause unwanted issues, use at own risk:

constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,plugins: {modern: [require('chartjs-plugin-annotation')]}});

Older plugins


  1. Plugin that expects a global Chart variable.
constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,plugins: {requireChartJSLegacy: ['<some plugin>']}});
  1. Plugins that require ChartJS themselves.
constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,plugins: {globalVariableLegacy: ['chartjs-plugin-crosshair']}});
  1. Register plugin directly with ChartJS:
constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,plugins: {requireLegacy: ['chartjs-plugin-datalabels']}});

These approaches can be combined also:

constchartJSNodeCanvas=newChartJSNodeCanvas({ width, height,plugins: {modern: ['chartjs-plugin-annotation'],requireLegacy: ['chartjs-plugin-datalabels']}});

See the tests for some examples.

Known Issues

There is a problem with persisting config objects between render calls, see this issue for details and workarounds.

About

A node renderer for Chart.js using canvas.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages