Guest User

Untitled

a guest
Dec 10th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.14 KB | None | 0 0
  1.  
  2. <style type="text/css">
  3. .tip {
  4. color: #111;
  5. width: auto;
  6. background-color: white;
  7. border:1px solid #ccc;
  8. -moz-box-shadow:#555 2px 2px 8px;
  9. -webkit-box-shadow:#555 2px 2px 8px;
  10. -o-box-shadow:#555 2px 2px 8px;
  11. box-shadow:#555 2px 2px 8px;
  12. opacity:0.9;
  13. filter:alpha(opacity=90);
  14. font-size:10px;
  15. font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
  16. padding:7px;
  17. }
  18. .table-laptop{
  19. width: 940px;
  20. margin: 0px auto;
  21. border-collapse: collapse;
  22. border: 1px solid #d6d6d6;
  23. font-family: Helvetica;
  24. }
  25. .table-laptop .rowa {
  26. background: #ffffff;
  27. height: 40px;
  28. }
  29. .table-laptop .rowb {
  30. background: #fbfbfb;
  31. height: 40px;
  32. }
  33. .table-laptop .cell {
  34. padding: 0px;
  35. border: 1px solid #d6d6d6;
  36. }
  37.  
  38. .table-laptop .title {
  39. padding: 0px;
  40. border: 1px solid #d6d6d6;
  41. color: #3889cf;
  42. text-align: center;
  43. font-size: 13px;
  44. }
  45.  
  46. .table-laptop .col1 {
  47. font-family: Helvetica;
  48. font-size: 13px;
  49. font-weight: 400;
  50. width: 175px;
  51. padding-left: 5px;
  52. border: 1px solid #d6d6d6;
  53. background: rgb(235,235,235); /* Old browsers */
  54. background: -moz-linear-gradient(left, rgba(235,235,235,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
  55. background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(235,235,235,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
  56. background: -webkit-linear-gradient(left, rgba(235,235,235,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
  57. background: -o-linear-gradient(left, rgba(235,235,235,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
  58. background: -ms-linear-gradient(left, rgba(235,235,235,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
  59. background: linear-gradient(to right, rgba(235,235,235,1) 0%,rgba(255,255,255,1) 100%); /* W3C */
  60. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
  61. }
  62.  
  63. .table-laptop .col2 {
  64. width: 510px;
  65. font-size: 12px;
  66. padding-left: 5px;
  67. padding-right: 5px;
  68. font-weight: 400;
  69. }
  70.  
  71. .table-laptop .col3 {
  72. width: 90px;
  73. font-size: 13px;
  74. font-weight: 400;
  75. text-align: center;
  76. }
  77.  
  78. .table-laptop .col4 {
  79. width: 90px;
  80. font-size: 13px;
  81. font-weight: 400;
  82. text-align: center;
  83. }
  84. </style>
  85. <script type="text/javascript">
  86. <!--
  87. var labelType, useGradients, nativeTextSupport, animate;
  88. (function() {
  89. var ua = navigator.userAgent,
  90. iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
  91. typeOfCanvas = typeof HTMLCanvasElement,
  92. nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
  93. textSupport = (typeof document.createElement('canvas').getContext('2d').fillText == 'function');
  94. //I'm setting this based on the fact that ExCanvas provides text support for IE
  95. //and that as of today iPhone/iPad current text support is lame
  96. labelType = 'HTML';
  97. nativeTextSupport = labelType == 'Native';
  98. useGradients = nativeCanvasSupport;
  99. animate = !(iStuff || !nativeCanvasSupport);
  100. })();
  101. var Log = {
  102. elem: false,
  103. write: function(text){
  104. if (!this.elem)
  105. this.elem = document.getElementById('log');
  106. this.elem.innerHTML = text;
  107. this.elem.style.left = (500 - this.elem.offsetWidth / 2) + 'px';
  108. }
  109. };
  110. function init_hdd(){
  111. //init data
  112. var json = {
  113. 'label': ['asdasd','Toshiba Satellite L755','Toshiba Satellite L755','Toshiba Satellite C855','adsf',],
  114. 'values': [
  115. {
  116. 'label': 'asdasd',
  117. 'values': [111, 0, 0, 0, 0, 0]
  118. },
  119. {
  120. 'label': 'Toshiba Satellite L755',
  121. 'values': [0, 120.5, 0, 0, 0, 0]
  122. },
  123. {
  124. 'label': 'Toshiba Satellite L755',
  125. 'values': [0, 0, 120.5, 0, 0, 0]
  126. },
  127. {
  128. 'label': 'Toshiba Satellite C855',
  129. 'values': [0, 0, 0, 87.1, 0, 0]
  130. },
  131. {
  132. 'label': 'adsf',
  133. 'values': [0, 0, 0, 0, 12, 0]
  134. },
  135. ]
  136. };
  137. var barChart_hdd = new $jit.BarChart({
  138. //id of the visualization container
  139. injectInto: 'chart_hdd',
  140. //whether to add animations
  141. animate: true,
  142. //horizontal or vertical barcharts
  143. orientation: 'vertical',
  144. //bars separation
  145. barsOffset: 20,
  146. //visualization offset
  147. Margin: {
  148. top:5,
  149. left: 5,
  150. right: 5,
  151. bottom:5
  152. },
  153. //labels offset position
  154. labelOffset: 5,
  155. //bars style
  156. type: useGradients? 'stacked:gradient' : 'stacked',
  157. //whether to show the aggregation of the values
  158. showAggregates:true,
  159. //whether to show the labels for the bars
  160. showLabels:true,
  161. //labels style
  162. Label: {
  163. type: labelType, //Native or HTML
  164. size: 13,
  165. family: 'Arial',
  166. color: 'white'
  167. },
  168. //add tooltips
  169. Tips: {
  170. enable: true,
  171. onShow: function(tip, elem) {
  172. tip.innerHTML = "<b>" + elem.name + "</b>: " + elem.value;
  173. }
  174. }
  175. });
  176. //load JSON data.
  177. barChart_hdd.loadJSON(json);
  178. //end
  179. }
  180. //-->
  181. $(document).ready(function(){
  182. init_hdd();
  183. })
  184. </script>
  185. <script type="text/javascript">
  186. <!--
  187. var labelType, useGradients, nativeTextSupport, animate;
  188. (function() {
  189. var ua = navigator.userAgent,
  190. iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
  191. typeOfCanvas = typeof HTMLCanvasElement,
  192. nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
  193. textSupport = (typeof document.createElement('canvas').getContext('2d').fillText == 'function');
  194. //I'm setting this based on the fact that ExCanvas provides text support for IE
  195. //and that as of today iPhone/iPad current text support is lame
  196. labelType = 'HTML';
  197. nativeTextSupport = labelType == 'Native';
  198. useGradients = nativeCanvasSupport;
  199. animate = !(iStuff || !nativeCanvasSupport);
  200. })();
  201. var Log = {
  202. elem: false,
  203. write: function(text){
  204. if (!this.elem)
  205. this.elem = document.getElementById('log');
  206. this.elem.innerHTML = text;
  207. this.elem.style.left = (500 - this.elem.offsetWidth / 2) + 'px';
  208. }
  209. };
  210. function init_cinebench_10(){
  211. //init data
  212. var json = {
  213. 'label': ['asdasd','ASUS K75','Toshiba Satellite C855','Toshiba Satellite L755','Toshiba Satellite L755',],
  214. 'values': [
  215. {
  216. 'label': 'asdasd',
  217. 'values': [12333, 0, 0, 0, 0, 0]
  218. },
  219. {
  220. 'label': 'ASUS K75',
  221. 'values': [0, 5568, 0, 0, 0, 0]
  222. },
  223. {
  224. 'label': 'Toshiba Satellite C855',
  225. 'values': [0, 0, 3595, 0, 0, 0]
  226. },
  227. {
  228. 'label': 'Toshiba Satellite L755',
  229. 'values': [0, 0, 0, 4500, 0, 0]
  230. },
  231. {
  232. 'label': 'Toshiba Satellite L755',
  233. 'values': [0, 0, 0, 0, 4500, 0]
  234. },
  235. ]
  236. };
  237. var barChart_cinebench_10 = new $jit.BarChart({
  238. //id of the visualization container
  239. injectInto: 'chart_cinebench_10',
  240. //whether to add animations
  241. animate: true,
  242. //horizontal or vertical barcharts
  243. orientation: 'vertical',
  244. //bars separation
  245. barsOffset: 20,
  246. //visualization offset
  247. Margin: {
  248. top:5,
  249. left: 5,
  250. right: 5,
  251. bottom:5
  252. },
  253. //labels offset position
  254. labelOffset: 5,
  255. //bars style
  256. type: useGradients? 'stacked:gradient' : 'stacked',
  257. //whether to show the aggregation of the values
  258. showAggregates:true,
  259. //whether to show the labels for the bars
  260. showLabels:true,
  261. //labels style
  262. Label: {
  263. type: labelType, //Native or HTML
  264. size: 13,
  265. family: 'Arial',
  266. color: 'white'
  267. },
  268. //add tooltips
  269. Tips: {
  270. enable: true,
  271. onShow: function(tip, elem) {
  272. tip.innerHTML = "<b>" + elem.name + "</b>: " + elem.value;
  273. }
  274. }
  275. });
  276. //load JSON data.
  277. barChart_cinebench_10.loadJSON(json);
  278. //end
  279. }
  280. //-->
  281. $(document).ready(function(){
  282. init_cinebench_10();
  283. })
  284. </script>
  285. <script type="text/javascript">
  286. <!--
  287. var labelType, useGradients, nativeTextSupport, animate;
  288. (function() {
  289. var ua = navigator.userAgent,
  290. iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
  291. typeOfCanvas = typeof HTMLCanvasElement,
  292. nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
  293. textSupport = (typeof document.createElement('canvas').getContext('2d').fillText == 'function');
  294. //I'm setting this based on the fact that ExCanvas provides text support for IE
  295. //and that as of today iPhone/iPad current text support is lame
  296. labelType = 'HTML';
  297. nativeTextSupport = labelType == 'Native';
  298. useGradients = nativeCanvasSupport;
  299. animate = !(iStuff || !nativeCanvasSupport);
  300. })();
  301. var Log = {
  302. elem: false,
  303. write: function(text){
  304. if (!this.elem)
  305. this.elem = document.getElementById('log');
  306. this.elem.innerHTML = text;
  307. this.elem.style.left = (500 - this.elem.offsetWidth / 2) + 'px';
  308. }
  309. };
  310. function init_cinebench_11(){
  311. //init data
  312. var json = {
  313. 'label': ['asdasd',],
  314. 'values': [
  315. {
  316. 'label': 'asdasd',
  317. 'values': [2, 0, 0, 0, 0, 0]
  318. },
  319. ]
  320. };
  321. var barChart_cinebench_11 = new $jit.BarChart({
  322. //id of the visualization container
  323. injectInto: 'chart_cinebench_11',
  324. //whether to add animations
  325. animate: true,
  326. //horizontal or vertical barcharts
  327. orientation: 'vertical',
  328. //bars separation
  329. barsOffset: 20,
  330. //visualization offset
  331. Margin: {
  332. top:5,
  333. left: 5,
  334. right: 5,
  335. bottom:5
  336. },
  337. //labels offset position
  338. labelOffset: 5,
  339. //bars style
  340. type: useGradients? 'stacked:gradient' : 'stacked',
  341. //whether to show the aggregation of the values
  342. showAggregates:true,
  343. //whether to show the labels for the bars
  344. showLabels:true,
  345. //labels style
  346. Label: {
  347. type: labelType, //Native or HTML
  348. size: 13,
  349. family: 'Arial',
  350. color: 'white'
  351. },
  352. //add tooltips
  353. Tips: {
  354. enable: true,
  355. onShow: function(tip, elem) {
  356. tip.innerHTML = "<b>" + elem.name + "</b>: " + elem.value;
  357. }
  358. }
  359. });
  360. //load JSON data.
  361. barChart_cinebench_11.loadJSON(json);
  362. //end
  363. }
  364. //-->
  365. $(document).ready(function(){
  366. init_cinebench_11();
  367. })
  368. </script>
  369. <script type="text/javascript">
  370. <!--
  371. var labelType, useGradients, nativeTextSupport, animate;
  372. (function() {
  373. var ua = navigator.userAgent,
  374. iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
  375. typeOfCanvas = typeof HTMLCanvasElement,
  376. nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
  377. textSupport = (typeof document.createElement('canvas').getContext('2d').fillText == 'function');
  378. //I'm setting this based on the fact that ExCanvas provides text support for IE
  379. //and that as of today iPhone/iPad current text support is lame
  380. labelType = 'HTML';
  381. nativeTextSupport = labelType == 'Native';
  382. useGradients = nativeCanvasSupport;
  383. animate = !(iStuff || !nativeCanvasSupport);
  384. })();
  385. var Log = {
  386. elem: false,
  387. write: function(text){
  388. if (!this.elem)
  389. this.elem = document.getElementById('log');
  390. this.elem.innerHTML = text;
  391. this.elem.style.left = (500 - this.elem.offsetWidth / 2) + 'px';
  392. }
  393. };
  394. function init_3d_mark_11(){
  395. //init data
  396. var json = {
  397. 'label': ['asdasd',],
  398. 'values': [
  399. {
  400. 'label': 'asdasd',
  401. 'values': [2, 0, 0, 0, 0, 0]
  402. },
  403. ]
  404. };
  405. var barChart_3d_mark_11 = new $jit.BarChart({
  406. //id of the visualization container
  407. injectInto: 'chart_3d_mark_11',
  408. //whether to add animations
  409. animate: true,
  410. //horizontal or vertical barcharts
  411. orientation: 'vertical',
  412. //bars separation
  413. barsOffset: 20,
  414. //visualization offset
  415. Margin: {
  416. top:5,
  417. left: 5,
  418. right: 5,
  419. bottom:5
  420. },
  421. //labels offset position
  422. labelOffset: 5,
  423. //bars style
  424. type: useGradients? 'stacked:gradient' : 'stacked',
  425. //whether to show the aggregation of the values
  426. showAggregates:true,
  427. //whether to show the labels for the bars
  428. showLabels:true,
  429. //labels style
  430. Label: {
  431. type: labelType, //Native or HTML
  432. size: 13,
  433. family: 'Arial',
  434. color: 'white'
  435. },
  436. //add tooltips
  437. Tips: {
  438. enable: true,
  439. onShow: function(tip, elem) {
  440. tip.innerHTML = "<b>" + elem.name + "</b>: " + elem.value;
  441. }
  442. }
  443. });
  444. //load JSON data.
  445. barChart_3d_mark_11.loadJSON(json);
  446. //end
  447. }
  448. //-->
  449. $(document).ready(function(){
  450. init_3d_mark_11();
  451. })
  452. </script>
  453. <script type="text/javascript">
  454. <!--
  455. var labelType, useGradients, nativeTextSupport, animate;
  456. (function() {
  457. var ua = navigator.userAgent,
  458. iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
  459. typeOfCanvas = typeof HTMLCanvasElement,
  460. nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
  461. textSupport = (typeof document.createElement('canvas').getContext('2d').fillText == 'function');
  462. //I'm setting this based on the fact that ExCanvas provides text support for IE
  463. //and that as of today iPhone/iPad current text support is lame
  464. labelType = 'HTML';
  465. nativeTextSupport = labelType == 'Native';
  466. useGradients = nativeCanvasSupport;
  467. animate = !(iStuff || !nativeCanvasSupport);
  468. })();
  469. var Log = {
  470. elem: false,
  471. write: function(text){
  472. if (!this.elem)
  473. this.elem = document.getElementById('log');
  474. this.elem.innerHTML = text;
  475. this.elem.style.left = (500 - this.elem.offsetWidth / 2) + 'px';
  476. }
  477. };
  478. function init_3d_mark_11_vantage(){
  479. //init data
  480. var json = {
  481. 'label': ['asdasd',],
  482. 'values': [
  483. {
  484. 'label': 'asdasd',
  485. 'values': [22, 0, 0, 0, 0, 0]
  486. },
  487. ]
  488. };
  489. var barChart_3d_mark_11_vantage = new $jit.BarChart({
  490. //id of the visualization container
  491. injectInto: 'chart_3d_mark_11_vantage',
  492. //whether to add animations
  493. animate: true,
  494. //horizontal or vertical barcharts
  495. orientation: 'vertical',
  496. //bars separation
  497. barsOffset: 20,
  498. //visualization offset
  499. Margin: {
  500. top:5,
  501. left: 5,
  502. right: 5,
  503. bottom:5
  504. },
  505. //labels offset position
  506. labelOffset: 5,
  507. //bars style
  508. type: useGradients? 'stacked:gradient' : 'stacked',
  509. //whether to show the aggregation of the values
  510. showAggregates:true,
  511. //whether to show the labels for the bars
  512. showLabels:true,
  513. //labels style
  514. Label: {
  515. type: labelType, //Native or HTML
  516. size: 13,
  517. family: 'Arial',
  518. color: 'white'
  519. },
  520. //add tooltips
  521. Tips: {
  522. enable: true,
  523. onShow: function(tip, elem) {
  524. tip.innerHTML = "<b>" + elem.name + "</b>: " + elem.value;
  525. }
  526. }
  527. });
  528. //load JSON data.
  529. barChart_3d_mark_11_vantage.loadJSON(json);
  530. //end
  531. }
  532. //-->
  533. $(document).ready(function(){
  534. init_3d_mark_11_vantage();
  535. })
  536. </script>
  537. <script type="text/javascript">
  538. <!--
  539. var labelType, useGradients, nativeTextSupport, animate;
  540. (function() {
  541. var ua = navigator.userAgent,
  542. iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
  543. typeOfCanvas = typeof HTMLCanvasElement,
  544. nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
  545. textSupport = (typeof document.createElement('canvas').getContext('2d').fillText == 'function');
  546. //I'm setting this based on the fact that ExCanvas provides text support for IE
  547. //and that as of today iPhone/iPad current text support is lame
  548. labelType = 'HTML';
  549. nativeTextSupport = labelType == 'Native';
  550. useGradients = nativeCanvasSupport;
  551. animate = !(iStuff || !nativeCanvasSupport);
  552. })();
  553. var Log = {
  554. elem: false,
  555. write: function(text){
  556. if (!this.elem)
  557. this.elem = document.getElementById('log');
  558. this.elem.innerHTML = text;
  559. this.elem.style.left = (500 - this.elem.offsetWidth / 2) + 'px';
  560. }
  561. };
  562. function init_unigine_heaven(){
  563. //init data
  564. var json = {
  565. 'label': ['asdasd',],
  566. 'values': [
  567. {
  568. 'label': 'asdasd',
  569. 'values': [33, 0, 0, 0, 0, 0]
  570. },
  571. ]
  572. };
  573. var barChart_unigine_heaven = new $jit.BarChart({
  574. //id of the visualization container
  575. injectInto: 'chart_unigine_heaven',
  576. //whether to add animations
  577. animate: true,
  578. //horizontal or vertical barcharts
  579. orientation: 'vertical',
  580. //bars separation
  581. barsOffset: 20,
  582. //visualization offset
  583. Margin: {
  584. top:5,
  585. left: 5,
  586. right: 5,
  587. bottom:5
  588. },
  589. //labels offset position
  590. labelOffset: 5,
  591. //bars style
  592. type: useGradients? 'stacked:gradient' : 'stacked',
  593. //whether to show the aggregation of the values
  594. showAggregates:true,
  595. //whether to show the labels for the bars
  596. showLabels:true,
  597. //labels style
  598. Label: {
  599. type: labelType, //Native or HTML
  600. size: 13,
  601. family: 'Arial',
  602. color: 'white'
  603. },
  604. //add tooltips
  605. Tips: {
  606. enable: true,
  607. onShow: function(tip, elem) {
  608. tip.innerHTML = "<b>" + elem.name + "</b>: " + elem.value;
  609. }
  610. }
  611. });
  612. //load JSON data.
  613. barChart_unigine_heaven.loadJSON(json);
  614. //end
  615. }
  616. //-->
  617. $(document).ready(function(){
  618. init_unigine_heaven();
  619. })
  620. </script>
Add Comment
Please, Sign In to add comment