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 100% Stacked Bar chart type.

For detailed implementation, please take a look at the HTML code tab.
 
<!DOCTYPE html>
<html>
<head>
    <title>100% Stacked Bar 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">
        var chart = new dvxCharts.Chart({
            title: {
                text: '100% Stacked Bar Chart'
            },
            legend: {
                location: 'bottom'
            },
            border: {
                padding: 10
            },
            animation: {
                duration: 1
            },
            axes: [
                {
                    type: 'category',
                    location: 'left',
                    categories: ['A', 'B', 'C', 'D', 'E', 'F', 'G']
                },
                {
                    type: 'linear',
                    location: 'bottom',
                    extendRangeToOrigin: true,
                    labels: {
                        stringFormat: '%d%%'
                    }
                }
            ],
            series: [
                {
                    type: 'stacked100Bar',
                    title: 'Stacked 1',
                    data: [62, 70, 68, 58, 52, 60, 48],
                    labels: {
                        stringFormat: '%.2f%%',
                        valueType: 'percentage'
                    }
                },
                {
                    type: 'stacked100Bar',
                    title: 'Stacked 2',
                    data: [56, 30, 62, 65, 40, 36, 70],
                    labels: {
                        stringFormat: '%.2f%%',
                        valueType: 'percentage'
                    }
                },
                {
                    type: 'stacked100Bar',
                    title: 'Stacked 3',
                    data: [33, 42, 54, 23, 54, 47, 61],
                    labels: {
                        stringFormat: '%.2f%%',
                        valueType: 'percentage'
                    }
                }
            ]
        });
        chart.write('container');
    </script>

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