Created
January 14, 2019 10:22
-
-
Save cesswairimu/91b091302ab959c4a4f735e8a03e94c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// trying to use this function to plot my values | |
helpful link => https://codepen.io/apexcharts/pen/QrbEQg | |
function generateDayWiseTimeSeries(s, count) { | |
var values = [[ | |
<%= @graph_notes.values.collect {|ind| ind[1]} %>, | |
<%= @graph_wikis.values.collect {|ind| ind[1]} %>, | |
<%= @graph_comments.values.collect {|ind| ind[1]} %> | |
]]; | |
var i = 0; | |
var series = []; | |
var x = new Date("11 Nov 2012").getTime(); | |
while (i < count) { | |
series.push([x, values[s][i]]); | |
x += 86400000; | |
i++; | |
} | |
return series; | |
//first I want value x to be something like <%= @time %> | |
//also I cannot get what line 16 is doing. | |
<script>
console.log('Hello world');
</script>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There you go