• 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. let chartConfig = {
    17. type: 'radar',
    18. plot: {
    19. aspect: 'area'
    20. },
    21. series: [{
    22. values: [35, 42, 67, 89, 25, 34, 67, 85]
    23. }],
    24. scaleK: {
    25. visible: false
    26. },
    27. scaleV: {
    28. values: '0:100:25',
    29. item: {
    30. alpha: 1,
    31. angle: 0,
    32. backgroundColor: '#ffe6e6',
    33. borderColor: 'red',
    34. borderRadius: 3,
    35. borderWidth: 1,
    36. fontColor: 'red',
    37. fontFamily: 'Courier',
    38. fontSize: 12,
    39. fontStyle: 'normal',
    40. fontWeight: 'normal',
    41. padding: 5,
    42. textAlpha: 1
    43. }
    44. }
    45. };
    46.  
    47. zingchart.render({
    48. id: 'myChart',
    49. data: chartConfig,
    50. height: 400,
    51. width: '100%'
    52. });
    53. </script>
    54. </body>
    55.  
    56. </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. let chartConfig = {
    2. type: 'radar',
    3. plot: {
    4. aspect: 'area'
    5. },
    6. series: [{
    7. values: [35, 42, 67, 89, 25, 34, 67, 85]
    8. }],
    9. scaleK: {
    10. visible: false
    11. },
    12. scaleV: {
    13. values: '0:100:25',
    14. item: {
    15. alpha: 1,
    16. angle: 0,
    17. backgroundColor: '#ffe6e6',
    18. borderColor: 'red',
    19. borderRadius: 3,
    20. borderWidth: 1,
    21. fontColor: 'red',
    22. fontFamily: 'Courier',
    23. fontSize: 12,
    24. fontStyle: 'normal',
    25. fontWeight: 'normal',
    26. padding: 5,
    27. textAlpha: 1
    28. }
    29. }
    30. };
    31.  
    32. zingchart.render({
    33. id: 'myChart',
    34. data: chartConfig,
    35. height: 400,
    36. width: '100%'
    37. });