Script request Graphical User Activity

xator

Member
Joined
May 3, 2016
Messages
58
Reaction score
30
Points
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
 

ehthe

Retired Staff
Contributor
Joined
Apr 26, 2015
Messages
1,029
Reaction score
896
Points
216
That's the library that they use.
 

xator

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

dedmen

TeamSpeak Developer
Contributor
Joined
Mar 28, 2016
Messages
530
Reaction score
584
Points
197
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
Joined
May 3, 2016
Messages
58
Reaction score
30
Points
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 ?
 

dedmen

TeamSpeak Developer
Contributor
Joined
Mar 28, 2016
Messages
530
Reaction score
584
Points
197
but this trick not always update right ? we need to update it manually from txt ?
yeah its always just using the txt it has....
 
Top