chartjs-node icon indicating copy to clipboard operation
chartjs-node copied to clipboard

Create Chart.js Charts Server-side

Results 38 chartjs-node issues
Sort by recently updated
recently updated
newest added

``` Unhandled rejection Error: Cannot find module 'chart.js' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15) at Function.Module._load (internal/modules/cjs/loader.js:562:25) at Module.require (internal/modules/cjs/loader.js:690:17) at require (internal/modules/cjs/helpers.js:25:18) at jsdom.envAsync.then.window (node_modules\chartjs-node\index.js:86:33) at tryCatcher (node_modules\bluebird\js\release\util.js:16:23) at Promise._settlePromiseFromHandler (node_modules\bluebird\js\release\promise.js:517:31) at...

I am trying to change the legend font color to black, but it always has a grey font. None of the configuration options is working. Is there any workaround? Thanks...

Hai, Is there any possibility of having tooltip feature as like chart.js have when we render in client end

Hey, I'm trying to generate the PNG with the tooltips on it. I tried a couple of different things. First, I've tried adding an addHitRegion() canvas' method on the afterDraw...

``` if (configuration.options.plugins) { Chartjs.pluginService.register(configuration.options.plugins); } ``` `/node_modules/chartjs-node/index.js` line 88 Got around this by adding `options: { plugins: {} }` but this should really handle itself, i can submit a...

Hi, Code works for one chart but when I create more then I get this error. I am new to Node and thought that that it was missing the data?

Hello, I just simply installed this (also installed canvas as npm install canvas and chart.js as npm install chart.js) and used the following code. and I got the below error....

my package.json versions "canvas": "2.0.0-alpha.8" "chart.js": "^2.7.1", "chartjs-node": "^1.6.0", --- When using `"canvas": "^2.0.0-alpha.2",` node-chartjs works like a charm, when using `"canvas": "^2.0.0-alpha.8",` item is null in acquireContext so item.length...

I'm getting a lot of compilation errors on: `yarn add chartjs-node` Like ` NAN_DEPRECATED inline v8::Local MakeCallback( ` I'm using node v9. Installation fails

I tried every possible options that is supposed to hide the initial tooltip before the image is created, but none work. My example code: ```js var chartNode = new ChartjsNode(550,...