Secondary value axis
Time series chart with two Y-Axes. You can enable a secondary value axis by creating a new object for each axis under 'valueAxis'; then assign each series to an axis using 'valueAxis' property under 'series'.
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"
                },
                valueAxis: {
                    "va1": {
                        title: "Temperature 1",
                        side: "left"
                    },
                    "va2": {
                        title: "Temperature 2",
                        side: "right"
                    }
                },
                series: [
                    {
                        id: "s1",
                        type: "columns",
                        valueAxis: "va1",
                        data: {
                            index: 1,
                            aggregation: "avg"
                        },
                        style: {
                            fillColor: "lightgreen",
                            lineColor: "olive",
                            lineWidth: 1,
                            padding: [2, 2] // space around the columns
                        }
                    },
                    {
                        id: "s2",
                        type: "line",
                        valueAxis: "va2",
                        data: {
                            index: 1,
                            aggregation: "max"
                        },
                        style: {
                            lineColor: "olive",
                            lineWidth: 3
                        }
                    }
                ]
            }
    );