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

flot.curvedlines

v1.1.1

Published

CurvedLines is a plugin for flot, which displays lines in a smooth curved way

Downloads

7,779

Readme

What it is

CurvedLines is a plugin for flot, which displays lines in a smooth curved way. This is achieved by adding additional points in between the "real" data points. See the test files for examples. Feel free to add additional features and correct errors.

Regards Michael

Hermite Splines v1.x.y

With the new version 1.x.y the original curve computation (nergal.dev's code) has been replaced by a new algorithm which computes hermite splines. In general the result should be closer to the data however the old implementation is still accessible through the legacyOverride option.

The approximation with local third-degree polynoms solves some existing issues. The problematic parameters curvePointFactor and fitPointDist are not longer needed and I hope that the new nrSplinePoints parameter needs less manual adjustment (basically only if you use zooming or large segments) and is easier to understand.

The old fit option has been replaced with monotonicFit, which if set, enforces the use of the Fritsch-Carlson method (anti wiggle no overshooting / undershooting).

Hands on


examples:


http://jsfiddle.net/p55d7bk8/2/ <- random data example http://jsfiddle.net/yqsb8mdc/2/ <- nrSplinePoints parameter http://jsfiddle.net/jd9q53fw/2/ <- fit parameters https://jsfiddle.net/L0kgfytv/ <- advanced usage http://jsfiddle.net/n0600qo4/2/ <- legacy example


how to use it:


Data:

CurvedLines assumes xi < xi+1 that is x values must be ordered from smallest to largest and must be unique.

Config:
  ... lines: { show: true},
     curvedLines: {
                      apply: true,
                   } ...

options:


| parameter | type | effect | |----------------|------|--------------------------------------------------------------------------------------------------| | active | bool | true => plugin can be used | | apply | bool | true => series will be drawn as curved line | | monotonicFit | bool | true => uses monotone cubic interpolation (preserve monotonicity) | | tension | double | [0,1] defines the tension parameter of the hermite spline interpolation (only if monotonicFit = false) | | nrSplinePoints | int | defines the number of sample points (of the spline) in between two consecutive points |

Versioning and Linking

CurvedLines is listed at bower.io. Releases are marked in GitHub

The following snippet uses RawGit as CDN to include CurvedLines and loads a local copy as fallback. Before copy pasting this please check the terms and conditions at RawGit!

<script src="https://cdn.rawgit.com/MichaelZinsmaier/CurvedLines/1.1.1/curvedLines.js"></script>

<script>
  $.plot.plugins.find(function(element){return element.name == "curvedLines"}) || 
  document.write('<script src="[server_local_copy]"><\/script>');
</script>

deprecated pre 1.0.0 plotting


legacy options:


to use the old curve computation algorithm with default parameters simply set legacyOverride to true

| parameter | type | effect | |----------------|------|---------------------------------------------------------------------------------------------------------------------------------------------| | legacyOverride | bool | true => use old default |

or to get more control set a parameter object with the old parameters as members

| parameter | type | effect | |----------------|------|---------------------------------------------------------------------------------------------------------------------------------------------| | fit | bool | true => forces the max,mins of the curve to be on the datapoints | | curvePointFactor | int | defines how many "virtual" points are used per "real" data point to emulate the curvedLines (points total = real points * curvePointFactor) | | fitPointDist | double | defines the x axis distance of the additional two points that are used to enforce the min max condition. |

 ... lines: { show: true},
     curvedLines: {
                   apply: true,
                   legacyOverride: {
                                    fit: true
                                    }
                   } ...