• Edit
  • Download
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7.  
    8. <script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script>
    9. <style></style>
    10. </head>
    11.  
    12. <body>
    13. <div id='myChart'></div>
    14. <script>
    15. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    16. zingchart.loadModules('toolbar3d');
    17.  
    18. let chartConfig = {
    19. type: 'bar3d',
    20. legend: {},
    21. plotarea: {
    22. margin: 100
    23. },
    24. tooltip: {},
    25. plot: {
    26. stacked: false,
    27. valueBox: {
    28. visible: 0
    29. },
    30. mode: 'normal',
    31. hoverState: {
    32. visible: false
    33. }
    34. },
    35. series: [{
    36. values: [99, 97, 97, 100],
    37. text: 'Apple'
    38. },
    39. {
    40. values: [64, 58, 51, 51],
    41. text: 'Microsoft'
    42. },
    43. {
    44. values: [58, 52, 63, 72],
    45. text: 'Amazon'
    46. }
    47. ]
    48. }
    49.  
    50. zingchart.render({
    51. id: 'myChart',
    52. data: chartConfig,
    53. height: 400,
    54. width: 600,
    55. modules: 'toolbar3d'
    56. });
    57. </script>
    58. </body>
    59.  
    60. </html>
    1. <!DOCTYPE html>
    2. <html>
    3.  
    4. <head>
    5. <meta charset="utf-8">
    6. <title>ZingSoft Demo</title>
    7.  
    8. <script src="https://cdn.zingchart.com/zingchart.min.js"></script>
    9. </head>
    10.  
    11. <body>
    12. <div id='myChart'></div>
    13. </body>
    14.  
    15. </html>
    1.  
    1. zingchart.loadModules('toolbar3d');
    2.  
    3. let chartConfig = {
    4. type: 'bar3d',
    5. legend: {},
    6. plotarea: {
    7. margin: 100
    8. },
    9. tooltip: {},
    10. plot: {
    11. stacked: false,
    12. valueBox: {
    13. visible: 0
    14. },
    15. mode: 'normal',
    16. hoverState: {
    17. visible: false
    18. }
    19. },
    20. series: [{
    21. values: [99, 97, 97, 100],
    22. text: 'Apple'
    23. },
    24. {
    25. values: [64, 58, 51, 51],
    26. text: 'Microsoft'
    27. },
    28. {
    29. values: [58, 52, 63, 72],
    30. text: 'Amazon'
    31. }
    32. ]
    33. }
    34.  
    35. zingchart.render({
    36. id: 'myChart',
    37. data: chartConfig,
    38. height: 400,
    39. width: 600,
    40. modules: 'toolbar3d'
    41. });