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

jscharting

v3.4.0

Published

JavaScript charting library

Downloads

4,819

Readme

JSCharting: Any Chart. Anywhere.

JSCharting is a JavaScript chart library for visualizing your data across all devices and platforms. Every JSCharting license includes the full suite of 150+ advanced chart types plus Gantt charts, JavaScript Org Charts, interactive stock and finance charts, seamless grid and calendar charts, JavaScript maps, and micro charts all for no additional charge. JSCharting has all the features you need and many you don't yet know you want.

Example Charts: Chart Types | Feature Examples

Install

Using CDN

Visit code.jscharting.com for a list of available releases.

<script src="https://code.jscharting.com/latest/jscharting.js"></script>

Download

The latest release can be downloaded here.

Using npm

See npm documentation to get started with npm.

npm install --save jscharting
Working with a local copy of JSCharting

The npm package folder jscharting/dist/ includes all the necessary charting JavaScript files and resources such as icons, polyfills, and mapping data files. The chart loads these resources dynamically as needed. The content of this folder should be accessible through http, so when building, copy this folder to a destination in the output website.

If the chart detects a script tag pointing to the main jscharting.js file, it will assume the rest of the resources are located in the same place and will load them from there.

If the JSC namespace is imported from the jscharting.js file as a module, the chart will not know where resources are located and will load them from the CDN. If debug: true chart option is set, a warning message will note that the chart is using the CDN. In order to use local resources, point the chart baseUrl option to the location of the local copy of the jscharting/dist/ folder.

To avoid setting the baseUrl property on every chart instance, it can be set as a global default like so:

JSC.defaults({ baseUrl: './js/jsc/' });

A wrapper module can be used to apply the baseUrl and any other default options that should be used globally such as debug, or styling options. All subsequent charts can import this wrapper instead of the chart itself to ensure the default options are always applied.

import * as JSC from "jscharting";

JSC.defaults({ baseUrl: './js/jsc/' });

export default JSC;

First Chart

Add a target div element to you HTML page for the chart to render in and specify a CSS height setting.

<div id="chartDiv" style="max-width: 500px; height: 300px;"></div>

Create an instance of a chart with some static data.

const chart = new JSC.Chart('chartDiv', { 
  type: 'column',
  series:[{
	name: 'Teams',
    points: [{ x: 'A', y: 10 }, { x: 'B', y: 5 }]
  }], 
});

First Chart

Edit in CodePen

Get data from CSV

JSC.fetch() is an alias for the standard JavaScript fetch() function and includes a polyfill for IE11. Use this function to effortlessly retrieve chart data from your disk.

JSC.fetch('./data.csv')
    .then(response => response.text())
    .then(text => {
        //Use csv text 
    });

Data in CSV, TSV, or delimiter-separated values format can be converted to JSON. Refer to the fetch(), CSV, and JSON tutorial for more information.

let data = JSC.csv2Json(
 'date,actual,goal\n1/1/2023,5409,7000\n1/8/2023,4893,7000'
);
// -> 
//[{date: 1672552800000, actual: 5409, goal: 7000},
//{date: 1673157600000, actual: 4893, goal: 7000}]

Map data to chart points

let points = data.map(d => {  
  return { x: d.date, y: d.actual }; 
});
//-> [{ x: 1672552800000, y: 5409 }, { x: 1673157600000, y: 4893 }]

Render a chart using data

const chart = new JSC.Chart('chartDiv', {
   /* Set the x axis scale to time. */
   xAxis_scale_type: 'time',
   /* Pass points to the series */
   series: [{
       points: points
   }]
});

CSV Data Chart

Edit in CodePen

Crash Course

(5 min read to hit the ground running)

The JSCharting API is designed to be user-friendly. The chart selects default options that are intuitive, reducing the need for customization.

Chart Types

You can set chart types through the chart type property:

const chart = new JSC.Chart('divId', { type: 'horizontal column' });

There are a variety of chart types, series types, and modifiers that can be combined in the "type" property.

Examples of chart types:

horizontal, pie, radar, map, organizational, calendar, full list

Examples of series types:

column, line, area, bubble, candlestick, full list

A few illustrated examples of type settings:

line column area horizontal column radar spider column gauge column roundcaps More Examples

Chart Types Overview

Be sure to check out our chart types gallery for examples and usage guidance.

Chart Options

Chart options can be set in the chart constructor,

const chart = new JSC.Chart('divId', { /*options*/ });

or at any time after the chart is rendered.

chart.options({ /*options*/ });

Property Expansion

JSCharting provides a declarative API with options such as

chart.options({ title: { label: { text: 'title text' }}});

For convenience, property paths can be combined into single property names as shown:

chart.options({ title_label_text: 'title text' });

Property Expansion Details

Hide Legend

chart.options({ legend_visible: false });

Legend Columns

// Less Detail
chart.options({ legend_template: '%icon %name' });
// More Detail
chart.options({ legend_template: '%average %sum %icon %name' });

Refer to the Token Reference Tutorial for a comprehensive list of over 54 available tokens, listed under the 'Series Tokens' section.

Legend template

Try it out in this CodePen

Legend Entries for Points

The code snippet below sets a series palette, which results in each point in a series having a corresponding entry in the legend box.

chart.options({ defaultSeries_palette: 'default' });

No Setting Series Palette Set

Legend Tutorial

Labels

chart.options({
    /* Title text */
    title_label_text: 'Title text',
    /* Axis label text */
    xAxis_label_text: 'Time',
    yAxis_label_text: 'Steps',
    /* Point labels */
    defaultPoint_label_text: '%yValue',
    /* Annotations */
    annotations:[{
        position: 'top',
        label_text: 'Annotation text'
    }]
});

Chart Labels

Using Labels tutorial.

Chart with a button

Do you need a user interface control to adjust a chart setting or test a line of code in real-time?

Traditionally, you would have to create an HTML element and link its events to JavaScript code, but this process can be made much easier by using the integrated UI controls provided by JSCharting. This allows you to add simple UI elements without any HTML required.

JSC.Chart('chartDiv', { 
    toolbar_items: {
        'Click Me': {
            events_click: function(){ alert('Button clicked'); }
        }}
});

Try it in CodePen.

Toolbar & UiItems tutorial.