New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

charted

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

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.

  • 0.1.5
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
12
decreased by-65.71%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 18 Jul 2013

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc