New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

node-highcharts-exporting

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-highcharts-exporting

easy to use highcharts exporting by phantomjs

latest
Source
npmnpm
Version
0.0.9
Version published
Maintainers
1
Created
Source

node-highcharts-exporting

Easy to use exporting-server by HighCharts

##Install

$ npm install node-highcharts-exporting

##Usage


var exporting = require("node-highcharts-exporting");
var fs = require('fs');


exporting({
    data : {
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
                'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        series: [{
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0,
                135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
        }]
    }

    options : {
        title : {text : "test"} ,
        "yAxis" : {"title" : {"text": "test" }}
    }

} , function (err , data){
    // data had encode base64 , should be decode
    fs.writeFile('chart.png', new Buffer(data, 'base64'), function() {
            console.log('Written to chart.png');
        });
})

##how it work The API is used:

exporting(options , callback)

options

  • data [object] - Highcharts configuration object.
  • scale [num] - A scaling factor for a higher image resolution. Maximum scaling is set to 4x. Remember that the width parameter has a higher precedence over scaling. default is 1
  • width [num] - The exact pixel width of the exported image. Defaults to chart.width or 600px. Maximum width is 2000px.
  • type [string] - Image format , the type can be of jpg, png, pfd or svg for , default is png.
  • constr [string] - Can be one of Chart or StockChart. This depends on whether you want to generate Highstock or basic Highcharts
  • executed [function] - The executed is a function which will be called in the constructor of Highcharts to be executed , the highchart object should as parameter pass into the function and named chart
  • options[object] - The options is init for Highcharts , see Highcharts.setOptions

callback

  • when file generated and will be called

Keywords

node-highcharts

FAQs

Package last updated on 07 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts