Add the component to your markup
<zing-chart
data='{"type": "line", "series": {["values": 1,2,3,4,5,6,4]}}'>
</zing-chart>
Or While everything can be configured via the data property, you can also fully configure ZingChart via child components
<zc-line>
<zc-legend draggable></zc-legend>
<zc-series>
<zc-series-0 values="[3,4,3,2,4,3,3]"></zc-series-0>
</zc-series>
</zc-line>