ZingChart: I'm looking for a mixed chart with a ___ (line) chart and ___ (bar) chart.

You can mix almost all chart types together in a mixed graph. Some exceptions are going to be maps, bubble pie and boxplot. These all take a more intricate approach to loading the data. If you cant use two graphs in a graphset you can always overlay one graph on top of another. Although this is not ideal, this is essentially creating your own graph type. The easiest way to test out if the chart types work together is to click edit and change the 'type' attribute and see what the results are!

{
"type":"mixed",
...
"series":[
    {
        "type":"line",
        "aspect":"spline",
        "scales":"scale-x,scale-y",
        "values":[13408,13091,12948,12835,12846,12848,12782,12785,12884,12703,12689,11917,11854,11945,11937,11992,12008,11798],
        "text":"Active Users",
        "line-color":"rgb(98, 207, 115)",
    },
    {
        "type":"bar",
        "scales":"scale-x, scale-y-2",
        "values":[1666,1613,1605,1592,1612,1593,1594,1595,1609,1578,1581,1507,1508,1526,1514,1520,1532,1503],
        "text":"Connects",
        "background-color":"rgb(103, 183, 220)",
        "alpha":"1"
    },
    {
        "type":"bar",
        "scales":"scale-x, scale-y-2",
        "values":[1633,1589,1580,1574,1583,1561,1550,1537,1543,1527,1534,1432,1411,1430,1435,1440,1443,1409],
        "text":"Disconnects",
        "background-color":"rgb(253, 212, 0)",
        "alpha":"1"
    }
]

Example: https://demos.zingchart.com/view/BP78669B

Documentation

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us