Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dailychart

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dailychart

Tiny SVG charting library to display daily graph of a stock market security

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Dailychart.js

Dailychart.js is a tiny standalone SVG charting library to display daily graph of a stock market security.

Installation

Download the standalone Dailychart.js and include it like this:

<script scr='./path/to/dailychart.js'></script>

Usage

HTML

<div id="chart"
     data-dailychart-values="12.94,13.0,12.98,13.02,13.0,13.0,12.95,12.85,13.04,13.13"
     data-dailychart-close="13.08"
     data-dailychart-length="78">
</div>

CSS

#chart {
  width: 80px;
  height: 30px;
}

JavaScript

var el = document.getElementById('chart');
new Dailychart(el, [options]);

Options

  • width - Chart width. If not set it equals to container's width.
  • height - Chart height. If not set it equals to container's height.
  • lineWidth - Line width of the graph (default: 1).
  • colorPositive - Color of the positive part of the graph (default: '#33AE45').
  • colorNegative - Color of the negative part of the graph (default: '#EB5757').
  • fillPositive - Fill color of the positive area (default: '').
  • fillNegative - Fill color of the negative area (default: '').
  • closeWidth - Width of the close line (default: 1).
  • closeColor - Color of the close line (default: '#e0e0e0').

HTML Attributes

  • data-dailychart-values - Comma delimited data points for the graph.
  • data-dailychart-length - Number of points in the trading session.
  • data-dailychart-close - Close value of previous trading session.

Changelog

1.1.0

  • Added new options: fillPositive, fillNegative

Keywords

FAQs

Package last updated on 15 Jun 2018

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