Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlena Horal-Koretska <ohoralkoretska@gitlab.com>2019-09-05 19:42:40 +0300
committerOlena Horal-Koretska <ohoralkoretska@gitlab.com>2019-09-05 19:42:40 +0300
commit6b7dba51091a7aa83a55d6275006255030527295 (patch)
tree284ad4e6356f17c98be8e294921b0ae69ba76904
parent1943358b43ff5d13d5b78534ca341012bc0689bf (diff)
Sample Data
-rw-r--r--app/assets/javascripts/aSpike/sample_data/data.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/app/assets/javascripts/aSpike/sample_data/data.json b/app/assets/javascripts/aSpike/sample_data/data.json
new file mode 100644
index 00000000000..2b387b0958c
--- /dev/null
+++ b/app/assets/javascripts/aSpike/sample_data/data.json
@@ -0,0 +1,44 @@
+{
+ "chartType": "line, area or column for now",
+ "chartOptions": {
+ "xAxis": {
+ "name": "Series Name",
+ "type": "value, category, time or log / check https://echarts.apache.org/en/option.html#xAxis.type"
+ }
+ },
+ "source": [
+ {
+ "name": "Requested",
+ "data": [
+ [
+ "Mon",
+ 1184
+ ],
+ [
+ "Tue",
+ 1346
+ ],
+ [
+ "Wed",
+ 1035
+ ],
+ [
+ "Thu",
+ 1226
+ ],
+ [
+ "Fri",
+ 1421
+ ],
+ [
+ "Sat",
+ 1347
+ ],
+ [
+ "Sun",
+ 1035
+ ]
+ ]
+ }
+ ]
+}