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-bubble-chart

v1.4.2

Published

d3-bubble-chart ===============

Downloads

14

Readme

d3-bubble-chart

Bubble chart build using D3 (d3-axis, d3-brush, d3-drag, etc).

API

The d3-bubble-chart module only has one export:

  • createChart(container)

    Renders a new bubble chart in the given container and returns an instance of the chart.

Chart

  • chart.data([newData])

    If newData is specified, replaces the data shows in the graph and returns the chart object. Otherwise returns the current data in the graph.

    The data objects have to define the id, x, y, z and size attributes:

    {
      id: "bubble1",
      x: 1234,
      y: 567,
      z: 0.1,
      size: 10.5
    }
  • chart.selectedIds([selectedIds])

    If selectedIds is defined, replaces the selection and returns the chart object. Otherwise returns the ids of the selected objects.

    Note: setting the selection manually does not trigger the select event.

  • chart.axes()

    Returns the object that renders the X and Y axis (see below).

  • chart.tooltip()

    Returns the object that renders the tooltip (see below).

  • chart.on(type, listener)

    Registers a listener for the given event type. This replaces the previously registered listener if there was any. To unregister a listener, pass null as the second argument.

    The type must be one of the following:

    • select: invoked with a list of selected id (potentially empty):

      chart.on("select", (selectedIds) => {
        console.log("User has changed the selection", selectedIds);
      });

Axes

The X and Y axes are controlled by a single object that exposes the following methods:

  • axes.xTitle([title])

  • axes.yTitle([title])

    If title is defined, sets the title of the axis and returns the axes object. Otherwise returns the current title of the axis (default to empty string).

    chart.axes()
      .xTitle("Time (s)")
      .yTitle("Money ($)");
  • axes.xFormat([format])

  • axes.yFormat([format])

    If format is defined, sets the format function of the labels on the axis. Otherwise returns the current format.

    The format can be a pattern or a function (see https://github.com/d3/d3-format).

Tooltip

  • tooltip.render([function])

    If function is defined, set the render function and returns the tooltip object. Otherwise return the current render function (defaults to Object.toString).

    chart.tooltip().render(d => `Element ${d.id}`);

CSS styles

  • .d3bc-chart: chart background
  • .d3bc-axisLayer path: axis line
  • .d3bc-axisLayer line: axis tick
  • .d3bc-axisLayer text: axis tick label
  • .d3bc-axisTitle: axis title
  • .d3bc-bubble: base bubble
  • .d3bc-bubble:hover: focused bubble
  • .d3bc-bubble-selected: selected bubble
  • .d3bc-selectionRectangle .selection: selection box
  • .d3bc-tooltip: tooltip positioning
  • .d3bc-tooltip-content: tooltip content

Example

Please refer to the example app in the example sub-module for more details.