vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
3.1 KiB

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <title>Graph 3D Axis Ticks</title>
  5. <style>
  6. body {font: 10pt arial;}
  7. </style>
  8. <script type="text/javascript" src="../../dist/vis.js"></script>
  9. <script type="text/javascript">
  10. var data = null;
  11. var graph = null;
  12. function custom(x, y) {
  13. return (-Math.sin(x/Math.PI) * Math.cos(y/Math.PI) * 10 + 10) * 1000;
  14. }
  15. // Called when the Visualization API is loaded.
  16. function drawVisualization() {
  17. var style = document.getElementById('style').value;
  18. var withValue = ['bar-color', 'bar-size', 'dot-size', 'dot-color'].indexOf(style) != -1;
  19. // Create and populate a data table.
  20. data = new vis.DataSet();
  21. // create some nice looking data with sin/cos
  22. var steps = 5; // number of datapoints will be steps*steps
  23. var axisMax = 10;
  24. var axisStep = axisMax / steps;
  25. for (var x = 0; x <= axisMax; x+=axisStep) {
  26. for (var y = 0; y <= axisMax; y+=axisStep) {
  27. var z = custom(x,y);
  28. if (withValue) {
  29. var value = (y - x);
  30. data.add({x:x, y:y, z: z, style:value});
  31. }
  32. else {
  33. data.add({x:x, y:y, z: z});
  34. }
  35. }
  36. }
  37. // specify options
  38. var options = {
  39. width: '600px',
  40. height: '600px',
  41. style: style,
  42. showPerspective: true,
  43. showGrid: true,
  44. showShadow: false,
  45. // Option tooltip can be true, false, or a function returning a string with HTML contents
  46. //tooltip: true,
  47. tooltip: function (point) {
  48. // parameter point contains properties x, y, z
  49. return 'value: <b>' + point.z + '</b>';
  50. },
  51. xValueLabel: function(value) {
  52. return vis.moment().add(value, 'days').format('DD MMM');
  53. },
  54. yValueLabel: function(value) {
  55. return value * 10 + '%';
  56. },
  57. zValueLabel: function(value) {
  58. return value / 1000 + 'K';
  59. },
  60. keepAspectRatio: true,
  61. verticalRatio: 0.5
  62. };
  63. var camera = graph ? graph.getCameraPosition() : null;
  64. // create our graph
  65. var container = document.getElementById('mygraph');
  66. graph = new vis.Graph3d(container, data, options);
  67. if (camera) graph.setCameraPosition(camera); // restore camera position
  68. document.getElementById('style').onchange = drawVisualization;
  69. }
  70. </script>
  71. </head>
  72. <body onload="drawVisualization()">
  73. <p>
  74. <label for="style"> Style:
  75. <select id="style">
  76. <option value="bar">bar</option>
  77. <option value="bar-color">bar-color</option>
  78. <option value="bar-size">bar-size</option>
  79. <option value="dot">dot</option>
  80. <option value="dot-line">dot-line</option>
  81. <option value="dot-color">dot-color</option>
  82. <option value="dot-size">dot-size</option>
  83. <option value="grid">grid</option>
  84. <option value="line">line</option>
  85. <option value="surface">surface</option>
  86. </select>
  87. </label>
  88. </p>
  89. <div id="mygraph"></div>
  90. <div id="info"></div>
  91. </body>
  92. </html>