I am having trouble make a chart wider. My html & JS is below:
<div class="demo-section k-content wide" style="width: 100%">
<div id="indepthGraph"></div>
</div>
$("#indepthGraph").kendoChart({
title: {
text: "Graph Shit"
}
});
However, when I check developer tools elements tab, I see that my both my div's have disappeared, to be replaced by this <svg> tag. This is fine, however, on your examples http://demos.telerik.com/kendo-ui/bar-charts/multiple-axes - developer tool shows the two divs still there, with the <svg> tag inside the child div.
Thanks
Marc