dvxCharts Examples

Chart Data

Performance !!!

Bar and Column Charts

Line and Area Charts

Pie and Funnel Charts

Scatter and Bubble Charts

Radar and Polar Charts

Financial Charts

Gantt Charts

Combinational Charts

Dynamic Charts

Working with Chart Axes

Chart Features




This sample demonstrates the Candlestick chart type.

For detailed implementation, please take a look at the HTML code tab.
 
<!DOCTYPE html>
<html>
<head>
    <title>Candlestick Chart Example - JavaScript Chart by dvxCharts</title>
    <link rel="stylesheet" type="text/css" href="../../css/dvxCharts.chart.min.css" />
    <link rel="stylesheet" type="text/css" href="../../themes/base/styles.css" />
    <script src="../../js/dvxCharts.chart.min.js" type="text/javascript"></script>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <style>
        .example-container {
            width: 100%;
            max-width: 500px;
            height: 300px;
        }
    </style>
    
    <script lang="javascript" type="text/javascript">
        function round(d) {
            return Math.round(100 * d) / 100;
        }

        var data = [];

        var date = new Date(2010, 0, 1);

        var high = Math.random() * 40;
        var close = high - Math.random();
        var low = close - Math.random();
        var open = (high - low) * Math.random() + low;
        var oldOpen;

        data.push([date, round(high), round(low), round(open), round(close)]);

        for (var day = 2; day <= 60; day++) {

            date = new Date(2010, 0, day);
            high = open + Math.random();
            close = high - Math.random();
            low = close - Math.random();
            oldOpen = open;
            open = (high - low) * Math.random() + low;

            if (low > oldOpen) {
                low = oldOpen;
            }

            data.push([date, round(open), round(high), round(low), round(close)]);
        }

        var chart = new dvxCharts.Chart({
            title: {
                text: 'Candlestick Chart'
            },
            legend: {
                visible: false
            },
            animation: {
                duration: 1
            },
            series: [
                {
                    title: 'Price Index',
                    type: 'candlestick',
                    data: data,
                    priceUpFillStyle: 'white',
                    priceDownFillStyle: 'black',
                    strokeStyle: 'black'
                }
            ]
        });
        
        chart.write('container');
    </script>

</head>
<body>
    <div>
        <div id="container" class="example-container">
        </div>
    </div>
</body>
</html>