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 how to create a project schedule with the Gantt chart type.

For detailed implementation, please take a look at the HTML code tab.
 
<!DOCTYPE html>
<html>
<head>
    <title>Gantt Chart Project Schedule 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">
        var chart = new dvxCharts.Chart({
            title: {
                text: 'Project Schedule'
            },
            animation: {
                duration: 1
            },
            series: [
                {
                    type: 'gantt',
                    title: 'Alan',
                    data: [
                        ['Design', new Date(2010, 0, 1), new Date(2010, 0, 20)],
                        ['Development', new Date(2010, 0, 21), new Date(2010, 1, 15)],
                        ['Design', new Date(2010, 1, 16), new Date(2010, 1, 28)],
                        ['Development', new Date(2010, 2, 1), new Date(2010, 2, 20)],
                        ['Testing', new Date(2010, 2, 21), new Date(2010, 3, 10)]
                    ]
                },
                {
                    type: 'gantt',
                    title: 'Carrie',
                    data: [
                        ['Design', new Date(2010, 0, 21), new Date(2010, 1, 15)],
                        ['Development', new Date(2010, 1, 16), new Date(2010, 1, 28)],
                        ['Testing', new Date(2010, 2, 1), new Date(2010, 2, 20)]
                    ]
                },
                {
                    type: 'gantt',
                    title: 'Katie',
                    data: [
                        ['Design'],
                        ['Development', new Date(2010, 2, 21), new Date(2010, 3, 10)],
                        ['Testing', new Date(2010, 1, 16), new Date(2010, 1, 28)],
                        ['Testing', new Date(2010, 3, 11), new Date(2010, 4, 1)]
                    ]
                }
            ]
        });
        chart.write('container');
    </script>

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