1 Star 0 Fork 0

soulCoke / CurvedLines

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
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
                                    }
                   } ...

空文件

简介

暂无描述 展开 收起
HTML 等 4 种语言
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/yuanliyang/CurvedLines.git
git@gitee.com:yuanliyang/CurvedLines.git
yuanliyang
CurvedLines
CurvedLines
master

搜索帮助