├── .gitignore
├── .editorconfig
├── bower.json
├── examples
├── example1.html
├── server-load.html
├── responsive.html
└── server-load.js
├── package.json
├── LICENSE.txt
├── docs
├── example-final.html
├── index.html
└── tutorial.html
├── README.md
├── smoothie.d.ts
└── smoothie.js
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | end_of_line = lf
5 | trim_trailing_whitespace = true
6 | insert_final_newline = true
7 | charset = utf-8
8 | indent_style = space
9 | indent_size = 2
10 |
11 | [*.d.ts]
12 | indent_size = 4
13 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "smoothie",
3 | "main": "smoothie.js",
4 | "homepage": "http://smoothiecharts.org",
5 | "authors": [
6 | { "name": "Joe Walnes", "homepage": "https://joewalnes.com" },
7 | { "name": "Drew Noakes", "homepage": "https://drewnoakes.com" }
8 | ],
9 | "repository": {
10 | "type": "git",
11 | "url": "git@github.com:joewalnes/smoothie.git"
12 | },
13 | "description": "Smooooooth JavaScript charts for realtime streaming data",
14 | "moduleType": [
15 | "amd"
16 | ],
17 | "keywords": [
18 | "charts",
19 | "charting",
20 | "canvas"
21 | ],
22 | "license": "MIT",
23 | "ignore": [
24 | "**/.*",
25 | "node_modules",
26 | "bower_components",
27 | "docs",
28 | "examples",
29 | "builder"
30 | ]
31 | }
32 |
--------------------------------------------------------------------------------
/examples/example1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
19 |
20 |
21 |
22 |