• 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. let chartConfig = {
    24. type: 'line',
    25. subtitle: {
    26. text: 'Click some data points'
    27. },
    28. plot: {
    29. selectionMode: 'multiple',
    30. selectedMarker: {
    31. type: 'star5',
    32. size: 8,
    33. rules: [{
    34. rule: '%v > 30',
    35. backgroundColor: 'green'
    36. }, {
    37. rule: '%v < 30',
    38. backgroundColor: 'red'
    39. }],
    40. }
    41. },
    42. series: [{
    43. values: [11, 26, 7, 44, 11, 42]
    44. }, {
    45. values: [23, 11, 33, 31, 8, 10]
    46. }]
    47. };
    48.  
    49. zingchart.render({
    50. id: 'myChart',
    51. data: chartConfig,
    52. height: '100%',
    53. width: '100%'
    54. });
    55. </script>
    56. </body>
    57.  
    58. </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. let chartConfig = {
    2. type: 'line',
    3. subtitle: {
    4. text: 'Click some data points'
    5. },
    6. plot: {
    7. selectionMode: 'multiple',
    8. selectedMarker: {
    9. type: 'star5',
    10. size: 8,
    11. rules: [{
    12. rule: '%v > 30',
    13. backgroundColor: 'green'
    14. }, {
    15. rule: '%v < 30',
    16. backgroundColor: 'red'
    17. }],
    18. }
    19. },
    20. series: [{
    21. values: [11, 26, 7, 44, 11, 42]
    22. }, {
    23. values: [23, 11, 33, 31, 8, 10]
    24. }]
    25. };
    26.  
    27. zingchart.render({
    28. id: 'myChart',
    29. data: chartConfig,
    30. height: '100%',
    31. width: '100%'
    32. });