AnyChart-NodeJS icon indicating copy to clipboard operation
AnyChart-NodeJS copied to clipboard

ARCHIVED. AnyChart NodeJS module provides an easy way to generate SVG, JPG and PNG images of the charts on the server side.

Results 12 AnyChart-NodeJS issues
Sort by recently updated
recently updated
newest added

I don't think there is a way to go back to -11_1 so I think -12 is the only option I upgraded imagemagick to the latest version and am getting...

After installation and copying the example code (from the Quick start example), I get the following error when running: `TypeError: Cannot read properties of undefined (reading 'insertBefore')` thrown inside `/node_modules/anychart/dist/js/anychart-bundle.min.js:84:440`...

I am trying to insert the graph legend on the a combined graph (lines and bars). It seems i cant get the legend shown in any of the graph position....

I am trying to figure out how I can provide parameters for exportTo to pdf to set the page size (e.g. A4) and/or how to create multiple pages. Any suggestions?

I created a simple chart producing server (see svr.js below) witch accepts js code and feeds it to anychart and that returns SVG to requestor, run it on windows and...

This error is generated upon executing the provided example code "Generating PDF image of a chart that requires external resources".

HI, i got a problem. When i export to png, jpg format.,it just show up x-Axis line and chart line.But it is fine with PDF and SVG.

I am using the "string" method to create a stage with multiple charts and an image: var stage = anychart.graphics.create("container");var c0=anychart.fromJson({"chart":{"title":"Vodafone visits over time","type":"column","series":[{"data":[1,3,6,12,24,4,16,16,17,22,3,2,34,61,63,49,27,4,42,26,26,9,12,2,12,14,42,29,43,3,41,53,75,310,1176,244,144,638,387,270,223,152,105,91,167,175,393,694,704,233,232,527,395,325,414,416,179,186,418,941,351,302,295,142,162,290,221,236,278,839,153,122,193],"fill":"#0da6e0","stroke":"#0da6e0"}]}});c0.bounds('5%','5%','90%','25%').container(stage);c0.draw();var c1=anychart.fromJson({"chart":{"type":"pie","innerRadius":"0%","data":[{"x":"Apples","value":"18.14","fill":"#0da6e0"},{"x":"Oranges","value":"8.14","fill":"#61c6e5"}]}});c1.bounds('5%','35%','25%','25%').container(stage);c1.draw();var c2=anychart.fromJson({"chart":{"type":"pie","innerRadius":"0%","data":[{"x":"Apples","value":"28.14","fill":"#92d9ed"},{"x":"Oranges","value":"128.14","fill":"#1c6b8d"}]}});c2.bounds('35%','35%','25%','25%').container(stage);c2.draw();stage.image("https://vignette.wikia.nocookie.net/newtendo/images/0/08/Mariossbi.png", 10, 10, 200, 200);...

How to export image synchronously?

Why can't I create a chart column My source: // require file system and jsdom var fs = require('fs'); // For jsdom version 10 or higher. // Require JSDOM Class....