Horizontal Bar chart: C3.js

by rapik

HTML

<script src="https://rawgit.com/masayuki0812/c3/master/c3.js"></script>
<link rel="stylesheet" href="https://rawgit.com/masayuki0812/c3/master/c3.css">
<div id="chart"></div>

JavaScript

var chart = c3.generate({
        bindto: '#chart',
        padding: {
            left: 60
        },
        data: {
            x: 'x',
            columns:
            [
                ['x', 'Category1', 'Category2'],
                ['value', 50, 30]
            ],
            type: 'bar'
        },
        axis: {
            rotated: true,
            x: {
                type: 'category',  
            },
            y : {
              max: 100,//91
              tick : {
                outer : false
              }
              
            }
        }
	}
);