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

d3-sparkline-chart

v1.1.3

Published

D3 plugin for creating super simple sparkline charts

Downloads

10

Readme

d3-sparkline-chart

D3 plugin for creating super simple sparkline charts

NPM JavaScript Style Guide

Install

npm install --save d3-sparkline-chart

D3 is a peer dependency, so it must be included in your project.

API Reference

sparkline()

Creates a sparkline object. The object is suitable for use in a D3 selection .call(sparkline) call. It will render the bound data of the selection as a sparkline chart with the given properties. The bound data is expected to be a list, with x and y values accessed using the x and y properties.

sparkline.baseline([value])

If value is specified, sets the baseline and returns the sparkline. If value is not specified, returns the current baseline.

The baseline is a flat line across the chart that acts as a goal line, deliniating data values as 'good' and 'bad'.

The value of baseline can either be a number, or a function of the form: (d: data) => number. Unlike other accessors, the entire data set it provided.

Default value is null. A null value indicated that the baseline should be omitted.

sparkline.baselineLabel([value])

If value is specified, sets the baselineLabel and returns the sparkline. If value is not specified, returns the current baselineLabel.

baselineLabel can be either a string or function of the form data => string, where data is the entire datum provided.

sparkline.better([value])

If value is specified, sets better and returns the sparkline. If value is not specified, returns the current better value.

Valid values for better are higher and lower. Default is 'higher'. better controls whether data values above or below the baseline are considered good or bad. Setting better to 'lower' flips this so that values above the baseline are considered bad (and highlighted accordingly).

sparkline.data([value])

if value is specified, sets the data accessor and returns the sparkline. If value is not specified, returns the current data accessor.

If the data given to the sparkline is not an array, then it needs to know how to access the data to make the chart. The given function to data is there to convert the datum into a list/array.

Default value is the identity function, d => d, meaning that the incoming data is assumed to be a list.

This is useful if there is additional information that isn't needed for the chart data, but is needed elsewhere. For example, to set the baseline based on the bound data:

const data = { myCustomBaseline: 5, myData: [2,4,6,8,10] }
                  
d3.select(svg)
  .datum(data)
  .call(sparkline()
          .baseline(d => d.myCustomBaseline)
          .data(d => d.myData))

sparkline.dataFormat([value])

if value is specified, sets the dataFormat function and returns the sparkline. If value is not specified, returns the current dataFormat function.

This function has the form (d, i) => string and controls how the data label is formatted.

sparkline.domain([value])

If value is specified, sets the domain and returns the sparkline. If value is not specified, returns the current domain value.

If domain is not set, it is inferred from the data. However, setting domain overrides whatever the data determines, even if that means that some data will not be visible.

This is useful for syncronizing multiple sparklines to the same domain, such as a date range.

Default is null. Accepted values are [number, number] or [Date, Date].

sparkline.domainFormat([value])

if value is specified, sets the domainFormat function and returns the sparkline. If value is not specified, returns the current domainFormat function.

This function has the form (d, i) => string and controls how the x label is formatted.

sparkline.layout([value])

If value is specified, sets the layout and returns the sparkline. If value is not specified, returns the current layout value.

Valid values are 'left', 'top', and 'simple'.

  • left: The labels are to the left of the chart.
  • top: The labels are above the chart.
  • simple: Labels are disabled.

sparkline.margin([value])

If value is specified, sets the margin and returns the sparkline. If value is not specified, returns the current margin value.

Sets the margins around the edge of the chart, within the given size.

Default is [4, 4].

sparkline.offset([value])

If value is specified, set the offset percent and return the sparkline. If value is not specified, returns the current offset percent or null if default.

This controls what percentage of width or height the labels are allocated. Expected values are in the range (0, 1), meaning (0-100%).

The default is 25% for left layout and 50% for top layout. Set to null to allow default control.

sparkline.on('event', listener)

The event value should be one of 'highlight' or 'unhighlight'.

Adds an event listener for when the highlighted value changes. The 'unhighlight' event is dispatched when the chart is first created. The last data point is provided to the listener for this event since the chart marks that point when there is no interaction.

The 'hightlight' event is dispatched any time the highlighted value changes. The listener signature is of the form (d: datum, i: index) => void.

This is useful for changing any data labels to react to when the user mouses over the chart.

sparkline.size([value])

If value is specified, sets the size and returns the sparkline. If value is not specified, returns the current size value.

Sets the size of chart in the form [width, height].

Default is [360, 40].

sparkline.title([value])

If value is specified, sets the title and returns the sparkline. If value is not specified, returns the current title function.

This can be provided as either a string or function of the form datum => string, where datum is the entire dataset. The controls the title of the sparkline, by default in the upper left.

sparkline.x([value])

If value is specified, sets the x accessor and returns the sparkline. If value is not specified, returns the current x accessor value.

The accessor is used to get x values from each datum.

Default value is (d, i) => i. So, the default just charts the given values equally spaced.

sparkline.xLabel([value])

If value is specified, sets the xLabel function and returns the sparkline. If value is not specified, returns the current xLabel function.

This function is of the form (d, i) => string and controls how the x value is displayed.

sparkline.y([value])

If value is specified, sets the y accessor and returns the sparkline. If value is not specified, returns the current y accessor value.

The accessor is used to get y values from each datum.

Default value is (d, i) => d. So, the default just assumes that the input is a list of numbers.

sparkline.yLabel([value])

If value is specified, sets the yLabel function and returns the sparkline. If value is not specified, returns the current yLabel function.

This function is of the form (d, i) => string and controls how the y value is displayed.

Example

Creates 3 sparklines in the same SVG.

import React, { useRef, useEffect } from 'react'
import * as d3 from 'd3'
import { sparkline } from 'd3-sparkline'

export const SparklineExample = () => {
  const svg = useRef<SVGSVGElement>(null)

  useEffect(() => {

    d3.select(svg.current)
      .datum([1,1,2,3,5,8,13])
      .call(sparkline()
              .baseline(5)
              .on('highlight', d => console.log(d)))

  })

  return (
    <svg ref={svg} width="360" height="120">
      <rect width="100%" height="100%" stroke="black" fill="none" />
    </svg>
  )
}

License

MIT © omnizach