From f68e9fb3f57a0f6621cf051acbe47674c6c99e69 Mon Sep 17 00:00:00 2001 From: Philipp Spitzer Date: Wed, 30 May 2018 21:26:33 +0200 Subject: [PATCH] Use example .js code from http://c3js.org. --- web/static/seepark_web.js | 22 ++++++++++++++++++++++ web/templates/seepark_web.html | 6 ++++++ 2 files changed, 28 insertions(+) create mode 100644 web/static/seepark_web.js 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

+
+ + + + -- 2.47.3