Toolbar on the left side
By default, the toolbar will be displayed on the top of the chart, but you can move it to the left, right, or bottom using 'side' property under 'toolbar'.
HTML
HTML
<script src="https://cdn.zoomcharts-cloud.com/1/nightly/zoomcharts.js"></script>
<div id="demo"></div>
CSS
CSS
//No CSS for this example
JavaScript
JavaScript
var t = new TimeChart(
{
container: document.getElementById("demo"),
data:
{
units:["h"],
url: "/dvsl/data/time-chart/temperature-kuldiga-h.json"
},
toolbar:{
location:"outside", side:"left"
}
}
);