<!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></style> </head> <body> <div id='myChart'></div> <script> ZC.LICENSE = ["569d52cefae586f634c54f86dc99e6a9", "b55b025e438fa8a98e32482b5f768ff5"]; var myConfig = { "type": "nestedpie", "title": { "text": "Value Boxes" }, "plot": { "value-box": { "text": "%data-year", "font-color": "white", "font-family": "Georgia", "font-size": 12, "font-weight": "normal", "rules": [{ "rule": "%p != 0", "visible": false }] }, "data-year": ["2014", "2015", "2016"], "tooltip": { "text": "Ages %t: %v", "font-color": "black", "font-family": "Georgia", "font-size": 12, "background-color": "white", "border-width": 1, "border-color": "gray", "border-radius": "3px", "line-style": "dashdot", "padding": "10%", "text-alpha": 1, "alpha": 0.7 }, "alpha": 0.8, "shadow": false, "border-width": 1, "border-color": "white", "slice-start": "30%", }, "series": [{ "values": [59, 55, 30], "background-color": "orange red", "text": "0-18" }, { "values": [60, 50, 35], "background-color": "yellow orange", "text": "19-30" }, { "values": [50, 40, 30], "background-color": "green blue", "text": "31-34" }, { "values": [61, 59, 35], "background-color": "blue purple", "text": "46-64" }, { "values": [65, 55, 45], "background-color": "purple red", "text": "65 and over" } ] }; 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>
var myConfig = { "type": "nestedpie", "title": { "text": "Value Boxes" }, "plot": { "value-box": { "text": "%data-year", "font-color": "white", "font-family": "Georgia", "font-size": 12, "font-weight": "normal", "rules": [{ "rule": "%p != 0", "visible": false }] }, "data-year": ["2014", "2015", "2016"], "tooltip": { "text": "Ages %t: %v", "font-color": "black", "font-family": "Georgia", "font-size": 12, "background-color": "white", "border-width": 1, "border-color": "gray", "border-radius": "3px", "line-style": "dashdot", "padding": "10%", "text-alpha": 1, "alpha": 0.7 }, "alpha": 0.8, "shadow": false, "border-width": 1, "border-color": "white", "slice-start": "30%", }, "series": [{ "values": [59, 55, 30], "background-color": "orange red", "text": "0-18" }, { "values": [60, 50, 35], "background-color": "yellow orange", "text": "19-30" }, { "values": [50, 40, 30], "background-color": "green blue", "text": "31-34" }, { "values": [61, 59, 35], "background-color": "blue purple", "text": "46-64" }, { "values": [65, 55, 45], "background-color": "purple red", "text": "65 and over" } ] }; zingchart.render({ id: 'myChart', data: myConfig, height: 400, width: "100%" });