npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dailychart

v1.3.1

Published

Tiny SVG charting library to display stock sparklines

Downloads

484

Readme

Dailychart.js

npm Travis (.org) Dependency Status devDependency Status Greenkeeper badge

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

Installation

The simplest way is to include the library file from CDN:

<script src='https://unpkg.com/dailychart/dist/dailychart.min.js'></script>

It's also possible to install the package as a dependency from NPM

npm install dailychart --save

then include the library into your project:

var Dailychart = require('dailychart');

Usage

First, create a container for the chart and fill with data using attributes.

  • data-dailychart-values (required) - comma-separated values for the chart.
  • data-dailychart-close - the value splits the chart on two areas (positive, negative) with its own colors.
  • data-dailychart-length - the total number of data points. Used to scale the chart along the horizontal axis. If data-dailychart-values has fewer points the remaining space will be empty. On the other hand, if data-dailychart-length isn't defined the chart will fit the container.
<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>

Optionally apply CSS to the container.

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

Finally, create the chart for the element.

Dailychart.create('#chart', { lineWidth: 2 });

The first parameter can be a HTML element, a list of HTML elements or a CSS selector string.

Configuration

The second parameter of the constructor is an object that contains the number of options to control the appearance of the chart.

  • 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').

License

Dailychart.js is available under the MIT License.