Chart Range I
Chart Range I

Insert it in <head>

<body class="theme-light">

    <div id="chart"></div>
    <script type="text/javascript">
        $(function () {
            $("#chart").devuiChart({
                theme: "light",
                exportOptions: {
                    image: false,
                    print: false
                },
                tooltipSettings: {
                    customPointText: 'Low Value: <b>{point.low}</b><br/>High Value:<b>{point.high}</b>'
                },
                axisY: {
                    title: {
                        text: "Low/High Values"
                    }
                },
                axisX: {
                    axisType: 'datetime'
                },
                primaryHeader: {
                    text: "USD/EUR Low/High Values"
                },
                dataSeries: [
                    {
                        seriesType: 'rangebar',
                        collectionAlias: 'Low/High ',
                        dataStart: Date.UTC(2010, 2, 1),
                        dataStep: 24 * 3600 * 1000,
                        data: [[0.75, 0.79], [0.95, 1.03], [0.70, 0.79], [0.65, 0.70], [0.5, 0.69], [0.77, 0.89], [0.79, 0.87], [0.55, 0.89], [0.65, 0.99]]
                    }
                ]
            });
        });
    </script>

</body>