first commit
This commit is contained in:
@@ -0,0 +1,93 @@
|
||||
/* ------------------------------------------------------------------------------
|
||||
*
|
||||
* # Google Visualization - area
|
||||
*
|
||||
* Google Visualization area chart demonstration
|
||||
*
|
||||
* Version: 1.0
|
||||
* Latest update: August 1, 2015
|
||||
*
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
// Area chart
|
||||
// ------------------------------
|
||||
|
||||
// Initialize chart
|
||||
google.load("visualization", "1", {packages:["corechart"]});
|
||||
google.setOnLoadCallback(drawAreaChart);
|
||||
|
||||
|
||||
// Chart settings
|
||||
function drawAreaChart() {
|
||||
|
||||
// Data
|
||||
var data = google.visualization.arrayToDataTable([
|
||||
['Year', 'Sales', 'Expenses'],
|
||||
['2004', 1000, 400],
|
||||
['2005', 1170, 460],
|
||||
['2006', 660, 1120],
|
||||
['2007', 1030, 540]
|
||||
]);
|
||||
|
||||
|
||||
// Options
|
||||
var options = {
|
||||
fontName: 'Roboto',
|
||||
height: 400,
|
||||
curveType: 'function',
|
||||
fontSize: 12,
|
||||
areaOpacity: 0.4,
|
||||
chartArea: {
|
||||
left: '5%',
|
||||
width: '90%',
|
||||
height: 350
|
||||
},
|
||||
pointSize: 4,
|
||||
tooltip: {
|
||||
textStyle: {
|
||||
fontName: 'Roboto',
|
||||
fontSize: 13
|
||||
}
|
||||
},
|
||||
vAxis: {
|
||||
title: 'Sales and Expenses',
|
||||
titleTextStyle: {
|
||||
fontSize: 13,
|
||||
italic: false
|
||||
},
|
||||
gridarea:{
|
||||
color: '#e5e5e5',
|
||||
count: 10
|
||||
},
|
||||
minValue: 0
|
||||
},
|
||||
legend: {
|
||||
position: 'top',
|
||||
alignment: 'end',
|
||||
textStyle: {
|
||||
fontSize: 12
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Draw chart
|
||||
var area_chart = new google.visualization.AreaChart($('#google-area')[0]);
|
||||
area_chart.draw(data, options);
|
||||
}
|
||||
|
||||
|
||||
// Resize chart
|
||||
// ------------------------------
|
||||
|
||||
$(function () {
|
||||
|
||||
// Resize chart on sidebar width change and window resize
|
||||
$(window).on('resize', resize);
|
||||
$(".sidebar-control").on('click', resize);
|
||||
|
||||
// Resize function
|
||||
function resize() {
|
||||
drawAreaChart();
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,101 @@
|
||||
/* ------------------------------------------------------------------------------
|
||||
*
|
||||
* # Google Visualization - area intervals
|
||||
*
|
||||
* Google Visualization area chart with intervals demonstration
|
||||
*
|
||||
* Version: 1.0
|
||||
* Latest update: August 1, 2015
|
||||
*
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
// Area intervals
|
||||
// ------------------------------
|
||||
|
||||
// Initialize chart
|
||||
google.load("visualization", "1", {packages:["corechart"]});
|
||||
google.setOnLoadCallback(drawAreaIntervals);
|
||||
|
||||
|
||||
// Chart settings
|
||||
function drawAreaIntervals() {
|
||||
|
||||
// Data
|
||||
var data = new google.visualization.DataTable();
|
||||
data.addColumn('string', 'x');
|
||||
data.addColumn('number', 'values');
|
||||
data.addColumn({id:'i0', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i1', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
|
||||
data.addRows([
|
||||
['a', 100, 90, 110, 85, 96, 104, 120],
|
||||
['b', 120, 95, 130, 90, 113, 124, 140],
|
||||
['c', 130, 105, 140, 100, 117, 133, 139],
|
||||
['d', 90, 85, 95, 85, 88, 92, 95],
|
||||
['e', 70, 74, 63, 67, 69, 70, 72],
|
||||
['f', 30, 39, 22, 21, 28, 34, 40],
|
||||
['g', 80, 77, 83, 70, 77, 85, 90],
|
||||
['h', 100, 90, 110, 85, 95, 102, 110]]);
|
||||
|
||||
|
||||
// The intervals data as areas
|
||||
var options_area_intervals = {
|
||||
fontName: 'Roboto',
|
||||
height: 400,
|
||||
curveType: 'function',
|
||||
fontSize: 12,
|
||||
chartArea: {
|
||||
left: '5%',
|
||||
width: '90%',
|
||||
height: 350
|
||||
},
|
||||
lineWidth: 2,
|
||||
tooltip: {
|
||||
textStyle: {
|
||||
fontName: 'Roboto',
|
||||
fontSize: 13
|
||||
}
|
||||
},
|
||||
series: [{'color': '#43A047'}],
|
||||
intervals: { 'style': 'area' }, // Use area intervals.
|
||||
pointSize: 5,
|
||||
vAxis: {
|
||||
title: 'Number values',
|
||||
titleTextStyle: {
|
||||
fontSize: 13,
|
||||
italic: false
|
||||
},
|
||||
gridlines:{
|
||||
color: '#e5e5e5',
|
||||
count: 10
|
||||
},
|
||||
minValue: 0
|
||||
},
|
||||
legend: 'none'
|
||||
};
|
||||
|
||||
// Draw chart
|
||||
var area_intervals = new google.visualization.LineChart($('#google-area-intervals')[0]);
|
||||
area_intervals.draw(data, options_area_intervals);
|
||||
}
|
||||
|
||||
|
||||
// Resize chart
|
||||
// ------------------------------
|
||||
|
||||
$(function () {
|
||||
|
||||
// Resize chart on sidebar width change and window resize
|
||||
$(window).on('resize', resize);
|
||||
$(".sidebar-control").on('click', resize);
|
||||
|
||||
// Resize function
|
||||
function resize() {
|
||||
drawAreaIntervals();
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,94 @@
|
||||
/* ------------------------------------------------------------------------------
|
||||
*
|
||||
* # Google Visualization - stacked area
|
||||
*
|
||||
* Google Visualization stacked area chart demonstration
|
||||
*
|
||||
* Version: 1.0
|
||||
* Latest update: August 1, 2015
|
||||
*
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
// Stacked area
|
||||
// ------------------------------
|
||||
|
||||
// Initialize chart
|
||||
google.load("visualization", "1", {packages:["corechart"]});
|
||||
google.setOnLoadCallback(drawAreaStackedChart);
|
||||
|
||||
|
||||
// Chart settings
|
||||
function drawAreaStackedChart() {
|
||||
|
||||
// Data
|
||||
var data = google.visualization.arrayToDataTable([
|
||||
['Year', 'Cars', 'Trucks', 'Drones', 'Segways'],
|
||||
['2013', 870, 460, 310, 220],
|
||||
['2014', 460, 720, 220, 460],
|
||||
['2015', 930, 640, 340, 330],
|
||||
['2016', 1000, 400, 180, 500]
|
||||
]);
|
||||
|
||||
// Options
|
||||
var options_area_stacked = {
|
||||
fontName: 'Roboto',
|
||||
height: 400,
|
||||
curveType: 'function',
|
||||
fontSize: 12,
|
||||
areaOpacity: 0.4,
|
||||
chartArea: {
|
||||
left: '5%',
|
||||
width: '90%',
|
||||
height: 350
|
||||
},
|
||||
isStacked: true,
|
||||
pointSize: 4,
|
||||
tooltip: {
|
||||
textStyle: {
|
||||
fontName: 'Roboto',
|
||||
fontSize: 13
|
||||
}
|
||||
},
|
||||
lineWidth: 1.5,
|
||||
vAxis: {
|
||||
title: 'Number values',
|
||||
titleTextStyle: {
|
||||
fontSize: 13,
|
||||
italic: false
|
||||
},
|
||||
gridlines:{
|
||||
color: '#e5e5e5',
|
||||
count: 10
|
||||
},
|
||||
minValue: 0
|
||||
},
|
||||
legend: {
|
||||
position: 'top',
|
||||
alignment: 'end',
|
||||
textStyle: {
|
||||
fontSize: 12
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Draw chart
|
||||
var area_stacked_chart = new google.visualization.AreaChart($('#google-area-stacked')[0]);
|
||||
area_stacked_chart.draw(data, options_area_stacked);
|
||||
}
|
||||
|
||||
|
||||
// Resize chart
|
||||
// ------------------------------
|
||||
|
||||
$(function () {
|
||||
|
||||
// Resize chart on sidebar width change and window resize
|
||||
$(window).on('resize', resize);
|
||||
$(".sidebar-control").on('click', resize);
|
||||
|
||||
// Resize function
|
||||
function resize() {
|
||||
drawAreaStackedChart();
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,93 @@
|
||||
/* ------------------------------------------------------------------------------
|
||||
*
|
||||
* # Google Visualization - stepped area
|
||||
*
|
||||
* Google Visualization stepped area chart demonstration
|
||||
*
|
||||
* Version: 1.0
|
||||
* Latest update: August 1, 2015
|
||||
*
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
// Stepped area
|
||||
// ------------------------------
|
||||
|
||||
// Initialize chart
|
||||
google.load("visualization", "1", { packages:["corechart"] });
|
||||
google.setOnLoadCallback(drawSteppedAreaChart);
|
||||
|
||||
|
||||
// Chart settings
|
||||
function drawSteppedAreaChart() {
|
||||
|
||||
// Data
|
||||
var data = google.visualization.arrayToDataTable([
|
||||
['Director (Year)', 'Rotten Tomatoes', 'IMDB'],
|
||||
['Alfred Hitchcock (1935)', 8.4, 7.9],
|
||||
['Ralph Thomas (1959)', 6.9, 6.5],
|
||||
['Don Sharp (1978)', 6.5, 6.4],
|
||||
['James Hawes (2008)', 4.4, 6.2]
|
||||
]);
|
||||
|
||||
// Options
|
||||
var options_stepped_area = {
|
||||
fontName: 'Roboto',
|
||||
height: 400,
|
||||
isStacked: true,
|
||||
fontSize: 12,
|
||||
areaOpacity: 0.4,
|
||||
chartArea: {
|
||||
left: '5%',
|
||||
width: '90%',
|
||||
height: 350
|
||||
},
|
||||
lineWidth: 1,
|
||||
tooltip: {
|
||||
textStyle: {
|
||||
fontName: 'Roboto',
|
||||
fontSize: 13
|
||||
}
|
||||
},
|
||||
pointSize: 5,
|
||||
vAxis: {
|
||||
title: 'Accumulated Rating',
|
||||
titleTextStyle: {
|
||||
fontSize: 13,
|
||||
italic: false
|
||||
},
|
||||
gridlines:{
|
||||
color: '#e5e5e5',
|
||||
count: 10
|
||||
},
|
||||
minValue: 0
|
||||
},
|
||||
legend: {
|
||||
position: 'top',
|
||||
alignment: 'center',
|
||||
textStyle: {
|
||||
fontSize: 12
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Draw chart
|
||||
var stepped_area_chart = new google.visualization.SteppedAreaChart($('#google-area-stepped')[0]);
|
||||
stepped_area_chart.draw(data, options_stepped_area);
|
||||
}
|
||||
|
||||
|
||||
// Resize chart
|
||||
// ------------------------------
|
||||
|
||||
$(function () {
|
||||
|
||||
// Resize chart on sidebar width change and window resize
|
||||
$(window).on('resize', resize);
|
||||
$(".sidebar-control").on('click', resize);
|
||||
|
||||
// Resize function
|
||||
function resize() {
|
||||
drawSteppedAreaChart();
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,102 @@
|
||||
/* ------------------------------------------------------------------------------
|
||||
*
|
||||
* # Google Visualization - line intervals
|
||||
*
|
||||
* Google Visualization line chart with intervals demonstration
|
||||
*
|
||||
* Version: 1.0
|
||||
* Latest update: August 1, 2015
|
||||
*
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
// Line intervals
|
||||
// ------------------------------
|
||||
|
||||
// Initialize chart
|
||||
google.load("visualization", "1", {packages:["corechart"]});
|
||||
google.setOnLoadCallback(drawLineIntervals);
|
||||
|
||||
|
||||
// Chart settings
|
||||
function drawLineIntervals() {
|
||||
|
||||
// Data
|
||||
var data = new google.visualization.DataTable();
|
||||
data.addColumn('string', 'x');
|
||||
data.addColumn('number', 'values');
|
||||
data.addColumn({id:'i0', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i1', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
data.addColumn({id:'i2', type:'number', role:'interval'});
|
||||
|
||||
data.addRows([
|
||||
['a', 100, 90, 110, 85, 96, 104, 120],
|
||||
['b', 120, 95, 130, 90, 113, 124, 140],
|
||||
['c', 130, 105, 140, 100, 117, 133, 139],
|
||||
['d', 90, 85, 95, 85, 88, 92, 95],
|
||||
['e', 70, 74, 63, 67, 69, 70, 72],
|
||||
['f', 30, 39, 22, 21, 28, 34, 40],
|
||||
['g', 80, 77, 83, 70, 77, 85, 90],
|
||||
['h', 100, 90, 110, 85, 95, 102, 110]
|
||||
]);
|
||||
|
||||
// The intervals data as narrow lines (useful for showing raw source data)
|
||||
var options_line_intervals = {
|
||||
fontName: 'Roboto',
|
||||
height: 400,
|
||||
curveType: 'function',
|
||||
fontSize: 12,
|
||||
chartArea: {
|
||||
left: '5%',
|
||||
width: '90%',
|
||||
height: 350
|
||||
},
|
||||
lineWidth: 3,
|
||||
tooltip: {
|
||||
textStyle: {
|
||||
fontName: 'Roboto',
|
||||
fontSize: 13
|
||||
}
|
||||
},
|
||||
series: [{'color': '#EF5350'}],
|
||||
intervals: {'style': 'line'}, // Use line intervals.
|
||||
pointSize: 5,
|
||||
vAxis: {
|
||||
title: 'Number values',
|
||||
titleTextStyle: {
|
||||
fontSize: 13,
|
||||
italic: false
|
||||
},
|
||||
gridlines:{
|
||||
color: '#e5e5e5',
|
||||
count: 10
|
||||
},
|
||||
minValue: 0
|
||||
},
|
||||
legend: 'none'
|
||||
};
|
||||
|
||||
|
||||
// Draw chart
|
||||
var line_intervals = new google.visualization.LineChart($('#google-line-intervals')[0]);
|
||||
line_intervals.draw(data, options_line_intervals);
|
||||
}
|
||||
|
||||
|
||||
// Resize chart
|
||||
// ------------------------------
|
||||
|
||||
$(function () {
|
||||
|
||||
// Resize chart on sidebar width change and window resize
|
||||
$(window).on('resize', resize);
|
||||
$(".sidebar-control").on('click', resize);
|
||||
|
||||
// Resize function
|
||||
function resize() {
|
||||
drawLineIntervals();
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,91 @@
|
||||
/* ------------------------------------------------------------------------------
|
||||
*
|
||||
* # Google Visualization - lines
|
||||
*
|
||||
* Google Visualization line chart demonstration
|
||||
*
|
||||
* Version: 1.0
|
||||
* Latest update: August 1, 2015
|
||||
*
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
// Line chart
|
||||
// ------------------------------
|
||||
|
||||
// Initialize chart
|
||||
google.load("visualization", "1", {packages:["corechart"]});
|
||||
google.setOnLoadCallback(drawLineChart);
|
||||
|
||||
|
||||
// Chart settings
|
||||
function drawLineChart() {
|
||||
|
||||
// Data
|
||||
var data = google.visualization.arrayToDataTable([
|
||||
['Year', 'Sales', 'Expenses'],
|
||||
['2004', 1000, 400],
|
||||
['2005', 1170, 460],
|
||||
['2006', 660, 1120],
|
||||
['2007', 1030, 540]
|
||||
]);
|
||||
|
||||
// Options
|
||||
var options = {
|
||||
fontName: 'Roboto',
|
||||
height: 400,
|
||||
curveType: 'function',
|
||||
fontSize: 12,
|
||||
chartArea: {
|
||||
left: '5%',
|
||||
width: '90%',
|
||||
height: 350
|
||||
},
|
||||
pointSize: 4,
|
||||
tooltip: {
|
||||
textStyle: {
|
||||
fontName: 'Roboto',
|
||||
fontSize: 13
|
||||
}
|
||||
},
|
||||
vAxis: {
|
||||
title: 'Sales and Expenses',
|
||||
titleTextStyle: {
|
||||
fontSize: 13,
|
||||
italic: false
|
||||
},
|
||||
gridlines:{
|
||||
color: '#e5e5e5',
|
||||
count: 10
|
||||
},
|
||||
minValue: 0
|
||||
},
|
||||
legend: {
|
||||
position: 'top',
|
||||
alignment: 'center',
|
||||
textStyle: {
|
||||
fontSize: 12
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Draw chart
|
||||
var line_chart = new google.visualization.LineChart($('#google-line')[0]);
|
||||
line_chart.draw(data, options);
|
||||
}
|
||||
|
||||
|
||||
// Resize chart
|
||||
// ------------------------------
|
||||
|
||||
$(function () {
|
||||
|
||||
// Resize chart on sidebar width change and window resize
|
||||
$(window).on('resize', resize);
|
||||
$(".sidebar-control").on('click', resize);
|
||||
|
||||
// Resize function
|
||||
function resize() {
|
||||
drawLineChart();
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user