From: Philipp Spitzer Date: Wed, 30 May 2018 19:26:33 +0000 (+0200) Subject: Use example .js code from http://c3js.org. X-Git-Url: https://git.toastfreeware.priv.at/chrisu/seepark.git/commitdiff_plain/f68e9fb3f57a0f6621cf051acbe47674c6c99e69?ds=inline Use example .js code from http://c3js.org. --- diff --git a/web/static/seepark_web.js b/web/static/seepark_web.js new file mode 100644 index 0000000..b58ad45 --- /dev/null +++ b/web/static/seepark_web.js @@ -0,0 +1,22 @@ +var chart = c3.generate({ + bindto: '#chart', + data: { + x: 'x', +// xFormat: '%Y%m%d', // 'xFormat' can be used as custom format of 'x' + columns: [ + ['x', '2013-01-01', '2013-01-02', '2013-01-03', '2013-01-04', '2013-01-05', '2013-01-06'], +// ['x', '20130101', '20130102', '20130103', '20130104', '20130105', '20130106'], + ['data1', 30, 200, 100, 400, 150, 250], + ['data2', 130, 340, 200, 500, 250, 350] + ] + }, + axis: { + x: { + type: 'timeseries', + tick: { + format: '%Y-%m-%d' + } + } + } +}); + diff --git a/web/templates/seepark_web.html b/web/templates/seepark_web.html index 287226b..29057be 100644 --- a/web/templates/seepark_web.html +++ b/web/templates/seepark_web.html @@ -6,9 +6,15 @@ + Hi! :-)

Hello world

+
+ + + +