line_overlapping

by shivajyothibalavikas

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>

<div id="container" style="height: 400px"></div>

JavaScript

$(function () {
    new Highcharts.Chart({
            chart: {
                renderTo: "container",
                type: "line"
            },
            legend: {
                enabled: false
            }, 
            credits: {
                enabled: false
            }, 
            xAxis: {
                type: "datetime", 
                tickmarkPlacement: "on",
                lineWidth: 10,
                lineColor: 'red',
            }, 
            yAxis: {        
                min: 0, 
                minRange : 0.1,
                title: {
                    text: ""
                }
            }, 
            plotOptions: {
                line: {
                    softThreshold: false
                }
            }, 
            series: [{
                name: "Memberships Referred",
                lineWidth: 10,
                lineColor: 'black',
                data:...