• 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>
    10. html,
    11. body,
    12. #myChart {
    13. height: 100%;
    14. width: 100%;
    15. }
    16. </style>
    17. </head>
    18.  
    19. <body>
    20. <div id='myChart'></div>
    21. <script>
    22. ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"];
    23. var myConfig = {
    24. "type": "mixed",
    25. "title": {
    26. "text": "Mixed Chart with Linear & Category Scales"
    27. },
    28. "scale-x": {
    29. "labels": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
    30. },
    31. "scale-y": {
    32. "values": "0:100:20",
    33. "format": "$%vK"
    34. },
    35. "series": [{
    36. "type": "bullet",
    37. "values": [59, 79, 40, 75, 33, 50, 65, 43, 55, 61, 80, 90],
    38. "goals": [60, 65, 34, 69, 15, 33, 45, 29, 55, 49, 51, 75],
    39. "goal": {
    40. "background-color": "#CD7F32",
    41. "border-color": "#CD7F32",
    42. "tooltip": {
    43. "text": "Bronze Goal: %g",
    44. "background-color": "#CD7F32",
    45. "border-color": "#CD7F32"
    46. }
    47. },
    48. "tooltip": {
    49. "text": "Actual: %v"
    50. }
    51. },
    52. {
    53. "type": "scatter",
    54. "values": [65, 71, 45, 72, 29, 37, 49, 33, 60, 56, 60, 80],
    55. "marker": {
    56. "type": "rectangle",
    57. "height": "7%",
    58. "width": "27%",
    59. "background-color": "#c0c0c0",
    60. "border-color": "#c0c0c0"
    61. },
    62. "tooltip": {
    63. "text": "Silver Goal: %v"
    64. }
    65. },
    66. {
    67. "type": "scatter",
    68. "values": [69, 75, 50, 81, 35, 45, 56, 39, 70, 68, 75, 95],
    69. "marker": {
    70. "type": "rectangle",
    71. "height": "7%",
    72. "width": "27%",
    73. "background-color": "#FFD700",
    74. "border-color": "#FFD700"
    75. },
    76. "tooltip": {
    77. "text": "Gold Goal: %v"
    78. }
    79. }
    80. ]
    81. };
    82.  
    83. zingchart.render({
    84. id: 'myChart',
    85. data: myConfig,
    86. height: "100%",
    87. width: "100%"
    88. });
    89. </script>
    90. </body>
    91.  
    92. </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. html,
    2. body,
    3. #myChart {
    4. height: 100%;
    5. width: 100%;
    6. }
    1. var myConfig = {
    2. "type": "mixed",
    3. "title": {
    4. "text": "Mixed Chart with Linear & Category Scales"
    5. },
    6. "scale-x": {
    7. "labels": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
    8. },
    9. "scale-y": {
    10. "values": "0:100:20",
    11. "format": "$%vK"
    12. },
    13. "series": [{
    14. "type": "bullet",
    15. "values": [59, 79, 40, 75, 33, 50, 65, 43, 55, 61, 80, 90],
    16. "goals": [60, 65, 34, 69, 15, 33, 45, 29, 55, 49, 51, 75],
    17. "goal": {
    18. "background-color": "#CD7F32",
    19. "border-color": "#CD7F32",
    20. "tooltip": {
    21. "text": "Bronze Goal: %g",
    22. "background-color": "#CD7F32",
    23. "border-color": "#CD7F32"
    24. }
    25. },
    26. "tooltip": {
    27. "text": "Actual: %v"
    28. }
    29. },
    30. {
    31. "type": "scatter",
    32. "values": [65, 71, 45, 72, 29, 37, 49, 33, 60, 56, 60, 80],
    33. "marker": {
    34. "type": "rectangle",
    35. "height": "7%",
    36. "width": "27%",
    37. "background-color": "#c0c0c0",
    38. "border-color": "#c0c0c0"
    39. },
    40. "tooltip": {
    41. "text": "Silver Goal: %v"
    42. }
    43. },
    44. {
    45. "type": "scatter",
    46. "values": [69, 75, 50, 81, 35, 45, 56, 39, 70, 68, 75, 95],
    47. "marker": {
    48. "type": "rectangle",
    49. "height": "7%",
    50. "width": "27%",
    51. "background-color": "#FFD700",
    52. "border-color": "#FFD700"
    53. },
    54. "tooltip": {
    55. "text": "Gold Goal: %v"
    56. }
    57. }
    58. ]
    59. };
    60.  
    61. zingchart.render({
    62. id: 'myChart',
    63. data: myConfig,
    64. height: "100%",
    65. width: "100%"
    66. });