Socket
Socket
Sign inDemoInstall

charted

Package Overview
Dependencies
14
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    charted

Charts an entire collection of data. Single or multiple y-axes. Support for 64-bit integers. Auto-resizing axes.


Version published
Weekly downloads
38
increased by3700%
Maintainers
1
Install size
4.58 MB
Created
Weekly downloads
 

Readme

Source

Charted

A charting module written with backbone and raphael. Best used with browserify.

usage

// initial data
var data = [ 
    { key1: 4, time: 1367390411059 },
    { key1: 2, time: 1367390412059 },
    { key1: 3, time: 1367390413059 }
];

// set up chart instance
var Charted = require('charted');
var chart = new Charted({ 
    x_key: "time",
    data: data
});

// set series to plot
chart.plot({
   key: 'key1',
   color: 'red' 
});

Keywords

FAQs

Last updated on 18 Jul 2013

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc