| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /*=========================================================================================
- File Name: bar.js
- Description: google horizontal bar chart
- ----------------------------------------------------------------------------------------
- Item Name: Robust - Responsive Admin Theme
- Version: 1.2
- Author: PIXINVENT
- Author URL: http://www.themeforest.net/user/pixinvent
- ==========================================================================================*/
- // Bar chart
- // ------------------------------
- // Load the Visualization API and the corechart package.
- google.load('visualization', '1.0', {'packages':['corechart']});
- // Set a callback to run when the Google Visualization API is loaded.
- google.setOnLoadCallback(drawBar);
- // Callback that creates and populates a data table, instantiates the pie chart, passes in the data and draws it.
- function drawBar() {
- // Create the data table.
- var data = google.visualization.arrayToDataTable([
- ['Year', 'Sales', 'Costs'],
- ['2011', 880, 250],
- ['2012', 730, 300],
- ['2013', 960, 450],
- ['2014', 1340, 430],
- ['2015', 1560, 540]
- ]);
- // Set chart options
- var options_bar = {
- height: 400,
- fontSize: 12,
- colors:['#2494be','#F6B75A'],
- chartArea: {
- left: '5%',
- width: '90%',
- height: 350
- },
- hAxis: {
- gridlines:{
- color: '#e9e9e9',
- },
- },
- vAxis: {
- gridlines:{
- count: 10
- },
- minValue: 0
- },
- legend: {
- position: 'top',
- alignment: 'center',
- textStyle: {
- fontSize: 12
- }
- }
- };
- // Instantiate and draw our chart, passing in some options.
- var bar = new google.visualization.BarChart(document.getElementById('bar-chart'));
- bar.draw(data, options_bar);
- }
- // Resize chart
- // ------------------------------
- $(function () {
- // Resize chart on menu width change and window resize
- $(window).on('resize', resize);
- $(".menu-toggle").on('click', resize);
- // Resize function
- function resize() {
- drawBar();
- }
- });
|