Script request Graphical User Activity

xator

Member
May 3, 2016
58
30
53
so, today i tried to find it on google but unfortunately cant find it, maybe some of you here know where i can learn about this ? here is screenshot i took from TS3Index.com, thanks before:D
e9PzS81.png
 

xator

Member
May 3, 2016
58
30
53
anyone know how i can convert to readable format CSV for dygraphs?
 

dedmen

TeamSpeak Developer
Contributor
Mar 28, 2016
530
583
157
anyone know how i can convert to readable format CSV for dygraphs?
dygraphs homepage shows this script
Code:
new Dygraph(div, "ny-vs-sf.txt", {
  legend: 'always',
  title: 'NYC vs. SF',
  showRoller: true,
  rollPeriod: 14,
  customBars: true,
  ylabel: 'Temperature (F)',
});
change title label and filename.. and convert your CSV to whatever format dygraph wants in that .txt file
 

xator

Member
May 3, 2016
58
30
53
dygraphs homepage shows this script
Code:
new Dygraph(div, "ny-vs-sf.txt", {
  legend: 'always',
  title: 'NYC vs. SF',
  showRoller: true,
  rollPeriod: 14,
  customBars: true,
  ylabel: 'Temperature (F)',
});
change title label and filename.. and convert your CSV to whatever format dygraph wants in that .txt file
but this trick not always update right ? we need to update it manually from txt ?
 
Top