<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ZingSoft Demo</title> <script nonce="undefined" src="https://cdn.zingchart.com/zingchart.min.js"></script> <style> #myChart { width: 100%; height: 100%; } #customTooltip { position: absolute; background-color: black; color: white; width: 100px; height: 100px; } </style> </head> <body> <div id='myChart'></div> <script> ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"]; var myConfig = { type: "line", crosshairX: { plotLabel: { text: '%t - %kl Value: %v', borderWidth: 2, bold: true, bottomState: { backgroundColor: 'red', offsetX: 10, offsetY: 10, }, } }, plot: { tooltip: { visible: false } }, scaleX: { labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug"] }, series: [{ values: [26, 35, 34, 10, 16, 38, 45, 35], text: 'Series 1' }, { values: [50, 27, 42, 55, 35, 57, 60, 30], text: 'Series 2' } ] }; zingchart.render({ id: 'myChart', data: myConfig, height: 400, width: "100%" }); </script> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ZingSoft Demo</title> <script src="https://cdn.zingchart.com/zingchart.min.js"></script> </head> <body> <div id='myChart'></div> </body> </html>
#myChart { width: 100%; height: 100%; } #customTooltip { position: absolute; background-color: black; color: white; width: 100px; height: 100px; }
var myConfig = { type: "line", crosshairX: { plotLabel: { text: '%t - %kl Value: %v', borderWidth: 2, bold: true, bottomState: { backgroundColor: 'red', offsetX: 10, offsetY: 10, }, } }, plot: { tooltip: { visible: false } }, scaleX: { labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug"] }, series: [{ values: [26, 35, 34, 10, 16, 38, 45, 35], text: 'Series 1' }, { values: [50, 27, 42, 55, 35, 57, 60, 30], text: 'Series 2' } ] }; zingchart.render({ id: 'myChart', data: myConfig, height: 400, width: "100%" });