OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
docroot
/
showcase
/
js
/
SVG
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/31/2022 06:53:36 AM
rwxr-xr-x
📄
SVGAll.js
43.74 KB
08/14/2022 11:05:25 AM
rw-r--r--
📄
app2.css
6.71 KB
08/14/2022 11:05:26 AM
rw-r--r--
📄
appanimate.js
7.62 KB
08/14/2022 11:05:25 AM
rw-r--r--
📄
appcharts.js
33.33 KB
08/14/2022 11:05:25 AM
rw-r--r--
📄
appcontroller.js
20.15 KB
08/14/2022 11:05:25 AM
rw-r--r--
📄
appmodel.js
1.41 KB
08/14/2022 11:05:26 AM
rw-r--r--
📄
arundata2.js
1.33 KB
08/14/2022 11:05:26 AM
rw-r--r--
📄
charts_svg.js
622 bytes
08/14/2022 11:05:26 AM
rw-r--r--
📄
d3.v2.js
234.06 KB
08/14/2022 11:05:26 AM
rw-r--r--
📄
d3.v3.js
253.25 KB
08/14/2022 11:05:25 AM
rw-r--r--
📄
spec.js
3.77 KB
08/14/2022 11:05:25 AM
rw-r--r--
Editing: appmodel.js
Close
LOG_PROD=2; LOG_INFO=3; LOG_DEBUG=4; LOG_TRACE=5; LOG_MODE=5; //var appcolors = d3.scale.category20c(); function appcolors(colorIndex){ var color=["#3366cc", "#dc3912", "#ff9900", "#109618", "#990099", "#0099c6", "#dd4477","#66aa00", "#b82e2e", "#cccccc", "#0011cc", "#316395", "#994499", "#22aa99", "#aaaa11", "#6633cc", "#e67300", "#8b0707", "#651067", "#329262"] ; return color[colorIndex]; } /********************** Class Def Start ******************/ function cubSvg(){ this.containerid; // Place holder for SVG Chart this.layout; // Dimensions of Outer SVG Page Grid } function cubAxis(){ this.Scale; // Axis Scale this.Axis; // Axis this.props; // Axis dimensions and other spec properties this.z; // unused this.data; //axis data } function cubChart(){ this.chart; //svg chart this.data; //data for chart this.spec; // chart dimensions and other spec properties this.path; //chart path this.position; //chart position } function eventResponse(){ this.chartno; // this.data; this.eventname; } function page(spec){ this.svgpage = initSVG(spec); this.data = spec.data; this.charts = new Array(); this.axes = new Array(); this.axespos = new Array(); this.nthaxis = 0; //Number of axes this.nthchart = 0; // Number of charts } /********************** Class Def Over ******************/ function cublog(msgtype, msgstr){ if(LOG_MODE >= msgtype){ console.log(msgstr); } }