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

chartist-plugin-tooltips-flex

v0.0.1

Published

Tooltip Plugin for Chartist.js

Downloads

1

Readme

Tooltip plugin for Chartist.js

This is a plugin for Chartist.js that will display a tooltip when hovering over line graphs.
It supports interpolation when hovvering between data points.
Works on mobile browser (only tested on firefox and chrome on android).
Supports Chartist.AutoScaleAxis and Chartist.FixedScaleAxis. Demo: https://jsfiddle.net/2d94h0vx/4/

Available options and their defaults

  var defaultOptions = {
    tooltipOffset: {
      x: 0,
      y: -15
    },
    tooltipClass: 'chartist-tooltip-flex',
    markerClass: 'chartist-tooltip-flex-marker',
    markerY: false,
    /* Function to merge the two found nearest points.
     * Can be one of: nearest, left, right, interpolate
     * Or a function. See comment over merge_functions.
     * Warning: interpolate doesn't properly work with lineSmooth: true. (TODO)
     * */
    mergeFnc: 'nearest',
    /* Function to create/update the tooltip content.
     * function fn(series, tooltip)...
     *  series contains {name: seriesname, value: value choosen by tooltipMergeFnc} for each series in the graph.
     *  If the return value is not null set it as textContent. tooltip can be used to update html.
     *  this is the plguin object which provides:
     *    options           : The option object
     *    merge_functions   : Object containing all build in merge function
     *    unProjectX(value) : Transforms x data value to svg position
     *    unProjectY(value) : Transforms y data value to svg position
     *    project(value)    : Transforms x svg position to x data value 
     */
    displayFnc: default_tooltip_display,
    /* Adds the tooltipHighlightPointClass to each point returned by the merge function if set. */
    highlightPoint: true,
    highlightPointClass: 'ct-tooltip-point-hit',
    /* Format function for x values. Used by the default tooltipMergeFnc */
    formatX: Chartist.noop,
    /* Format function for y values. Used by the default tooltipMergeFnc */
    formatY: Chartist.noop,
    /* Format function for series names. Used by the default tooltipMergeFnc */
    formatName: function(x){ var n=x.name; return n[0].toUpperCase() + n.substr(1) },
    /* Format function to select which x value is shown. Parameter is an array of all x values. Used by the default tooltipMergeFnc */
    mergeXSeriesFnc: function(x_values){ return x_values[0] }
  };

Sample usage in Chartist.js

var chart = new Chartist.Line('.ct-chart', {
  series: [
    {name: "Something", data: [{y: 1, x: 1}, {y: 5, x: 2}, {y: 3, x: 3}, {y: 4, x: 4}, {y: 6, x: 5}, {y: 2, x: 5}, {y: 3, x: 6}]},
    {name: "Something else", data: [{y: 2, x: 1}, {y: 4, x: 2}, {y: 2, x: 3}, {y: 5, x: 4}, {y: 4, x: 5}, {y: 3, x: 6}, {y: 6, x: 7}]}
  ]
}, {
  plugins: [
    Chartist.plugins.Tooltips_flex({
      formatY: function(y){ return "ABCDEFGHIJKLMNOPQ"[y] },
      formatX: function(x){ return x.toFixed(2)+ "%" }
    }),
  ]
});

Limitations and requirements

  • You have to provide a name or className for your series. If no name is given the formatName option need to be set to handle that.
  • Does not work witth StepAxis (TODO: for later)
  • Currently only works when grid is enabled. (TODO: for later)
  • This plugin isn't stable yet (and maybe never will). Options and functionality might change.