first commit
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,692 @@
|
||||
/*=========================================================================================
|
||||
File Name: chart-chartjs.js
|
||||
Description: Chartjs Examples
|
||||
----------------------------------------------------------------------------------------
|
||||
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
|
||||
Author: PIXINVENT
|
||||
Author URL: http://www.themeforest.net/user/pixinvent
|
||||
==========================================================================================*/
|
||||
|
||||
$(window).on("load", function () {
|
||||
|
||||
var $primary = '#7367F0';
|
||||
var $success = '#28C76F';
|
||||
var $danger = '#EA5455';
|
||||
var $warning = '#FF9F43';
|
||||
var $label_color = '#1E1E1E';
|
||||
var grid_line_color = '#dae1e7';
|
||||
var scatter_grid_color = '#f3f3f3';
|
||||
var $scatter_point_light = '#D1D4DB';
|
||||
var $scatter_point_dark = '#5175E0';
|
||||
var $white = '#fff';
|
||||
var $black = '#000';
|
||||
|
||||
var themeColors = [$primary, $success, $danger, $warning, $label_color];
|
||||
|
||||
// Line Chart
|
||||
// ------------------------------------------
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var lineChartctx = $("#line-chart");
|
||||
|
||||
// Chart Options
|
||||
var linechartOptions = {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
legend: {
|
||||
position: 'top',
|
||||
},
|
||||
hover: {
|
||||
mode: 'label'
|
||||
},
|
||||
scales: {
|
||||
xAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
}
|
||||
}],
|
||||
yAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
}
|
||||
}]
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'World population per region (in millions)'
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var linechartData = {
|
||||
labels: [1500, 1600, 1700, 1750, 1800, 1850, 1900, 1950, 1999, 2050],
|
||||
datasets: [{
|
||||
label: "Africa",
|
||||
data: [86, 114, 106, 106, 107, 111, 133, 221, 783, 2478],
|
||||
borderColor: $primary,
|
||||
fill: false
|
||||
}, {
|
||||
data: [282, 350, 411, 502, 635, 809, 947, 1402, 3700, 5267],
|
||||
label: "Asia",
|
||||
borderColor: $success,
|
||||
fill: false
|
||||
}, {
|
||||
data: [168, 170, 178, 190, 203, 276, 408, 547, 675, 734],
|
||||
label: "Europe",
|
||||
borderColor: $danger,
|
||||
fill: false
|
||||
}, {
|
||||
data: [40, 20, 10, 16, 24, 38, 74, 167, 508, 784],
|
||||
label: "Latin America",
|
||||
borderColor: $warning,
|
||||
fill: false
|
||||
}, {
|
||||
data: [6, 3, 2, 2, 7, 26, 82, 172, 312, 433],
|
||||
label: "North America",
|
||||
borderColor: $label_color,
|
||||
fill: false
|
||||
}]
|
||||
};
|
||||
|
||||
var lineChartconfig = {
|
||||
type: 'line',
|
||||
|
||||
// Chart Options
|
||||
options: linechartOptions,
|
||||
|
||||
data: linechartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var lineChart = new Chart(lineChartctx, lineChartconfig);
|
||||
|
||||
|
||||
|
||||
|
||||
// Bar Chart
|
||||
// ------------------------------------------
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var barChartctx = $("#bar-chart");
|
||||
|
||||
// Chart Options
|
||||
var barchartOptions = {
|
||||
// Elements options apply to all of the options unless overridden in a dataset
|
||||
// In this case, we are setting the border of each bar to be 2px wide
|
||||
elements: {
|
||||
rectangle: {
|
||||
borderWidth: 2,
|
||||
borderSkipped: 'left'
|
||||
}
|
||||
},
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 500,
|
||||
legend: { display: false },
|
||||
scales: {
|
||||
xAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
}
|
||||
}],
|
||||
yAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
},
|
||||
ticks: {
|
||||
stepSize: 1000
|
||||
},
|
||||
}],
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Predicted world population (millions) in 2050'
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var barchartData = {
|
||||
labels: ["Africa", "Asia", "Europe", "Latin America", "North America"],
|
||||
datasets: [{
|
||||
label: "Population (millions)",
|
||||
data: [2478, 5267, 734, 784, 433],
|
||||
backgroundColor: themeColors,
|
||||
borderColor: "transparent"
|
||||
}]
|
||||
};
|
||||
|
||||
var barChartconfig = {
|
||||
type: 'bar',
|
||||
|
||||
// Chart Options
|
||||
options: barchartOptions,
|
||||
|
||||
data: barchartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var barChart = new Chart(barChartctx, barChartconfig);
|
||||
|
||||
|
||||
|
||||
// Horizontal Chart
|
||||
// -------------------------------------
|
||||
|
||||
// Get the context of the Chart canvas element we want to select
|
||||
var horizontalChartctx = $("#horizontal-bar");
|
||||
|
||||
var horizontalchartOptions = {
|
||||
// Elements options apply to all of the options unless overridden in a dataset
|
||||
// In this case, we are setting the border of each horizontal bar to be 2px wide
|
||||
elements: {
|
||||
rectangle: {
|
||||
borderWidth: 2,
|
||||
borderSkipped: 'right',
|
||||
borderSkipped: 'top',
|
||||
}
|
||||
},
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 500,
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
scales: {
|
||||
xAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
}
|
||||
}],
|
||||
yAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
}
|
||||
}]
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Predicted world population (millions) in 2050'
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var horizontalchartData = {
|
||||
labels: ["Africa", "Asia", "Europe", "Latin America", "North America"],
|
||||
datasets: [{
|
||||
label: "Population (millions)",
|
||||
data: [2478, 5267, 734, 784, 433],
|
||||
backgroundColor: themeColors,
|
||||
borderColor: "transparent"
|
||||
}]
|
||||
};
|
||||
|
||||
var horizontalChartconfig = {
|
||||
type: 'horizontalBar',
|
||||
|
||||
// Chart Options
|
||||
options: horizontalchartOptions,
|
||||
|
||||
data: horizontalchartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var horizontalChart = new Chart(horizontalChartctx, horizontalChartconfig);
|
||||
|
||||
|
||||
|
||||
// Pie Chart
|
||||
// --------------------------------
|
||||
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var pieChartctx = $("#simple-pie-chart");
|
||||
|
||||
// Chart Options
|
||||
var piechartOptions = {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 500,
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Predicted world population (millions) in 2050'
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var piechartData = {
|
||||
labels: ["Africa", "Asia", "Europe", "Latin America", "North America"],
|
||||
datasets: [{
|
||||
label: "My First dataset",
|
||||
data: [2478, 5267, 734, 784, 433],
|
||||
backgroundColor: themeColors,
|
||||
}]
|
||||
};
|
||||
|
||||
var pieChartconfig = {
|
||||
type: 'pie',
|
||||
|
||||
// Chart Options
|
||||
options: piechartOptions,
|
||||
|
||||
data: piechartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var pieSimpleChart = new Chart(pieChartctx, pieChartconfig);
|
||||
|
||||
|
||||
|
||||
// Doughnut Chart
|
||||
// ---------------------------------------------
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var doughnutChartctx = $("#simple-doughnut-chart");
|
||||
|
||||
// Chart Options
|
||||
var doughnutchartOptions = {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 500,
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Predicted world population (millions) in 2050'
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var doughnutchartData = {
|
||||
labels: ["Africa", "Asia", "Europe", "Latin America", "North America"],
|
||||
datasets: [{
|
||||
label: "My First dataset",
|
||||
data: [2478, 5267, 734, 784, 433],
|
||||
backgroundColor: themeColors,
|
||||
}]
|
||||
};
|
||||
|
||||
var doughnutChartconfig = {
|
||||
type: 'doughnut',
|
||||
|
||||
// Chart Options
|
||||
options: doughnutchartOptions,
|
||||
|
||||
data: doughnutchartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var doughnutSimpleChart = new Chart(doughnutChartctx, doughnutChartconfig);
|
||||
|
||||
|
||||
// Radar Chart
|
||||
// ----------------------------------------
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var radarChartctx = $("#radar-chart");
|
||||
|
||||
// Chart Options
|
||||
var radarchartOptions = {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 500,
|
||||
legend: {
|
||||
position: 'top',
|
||||
},
|
||||
tooltips: {
|
||||
callbacks: {
|
||||
label: function (tooltipItems, data) {
|
||||
return data.datasets[tooltipItems.datasetIndex].label + ": " + tooltipItems.yLabel;
|
||||
}
|
||||
}
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Distribution in % of world population'
|
||||
},
|
||||
scale: {
|
||||
reverse: false,
|
||||
ticks: {
|
||||
beginAtZero: true,
|
||||
stepSize: 10
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var radarchartData = {
|
||||
labels: ["Africa", "Asia", "Europe", "Latin America", "North America"],
|
||||
datasets: [{
|
||||
label: "1950",
|
||||
fill: true,
|
||||
backgroundColor: "rgba(179,181,198,0.2)",
|
||||
borderColor: "rgba(179,181,198,1)",
|
||||
pointBorderColor: $white,
|
||||
pointBackgroundColor: "rgba(179,181,198,1)",
|
||||
data: [8.77, 55.61, 21.69, 6.62, 6.82],
|
||||
}, {
|
||||
label: "2050",
|
||||
fill: true,
|
||||
backgroundColor: "rgba(255,99,132,0.2)",
|
||||
borderColor: "rgba(255,99,132,1)",
|
||||
pointBorderColor: $white,
|
||||
pointBackgroundColor: "rgba(255,99,132,1)",
|
||||
data: [25.48, 54.16, 7.61, 8.06, 4.45],
|
||||
},]
|
||||
};
|
||||
|
||||
var radarChartconfig = {
|
||||
type: 'radar',
|
||||
|
||||
// Chart Options
|
||||
options: radarchartOptions,
|
||||
|
||||
data: radarchartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var polarChart = new Chart(radarChartctx, radarChartconfig);
|
||||
|
||||
|
||||
|
||||
// Polar Chart
|
||||
// -----------------------------------
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var polarChartctx = $("#polar-chart");
|
||||
|
||||
// Chart Options
|
||||
var polarchartOptions = {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 500,
|
||||
legend: {
|
||||
position: 'top',
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Predicted world population (millions) in 2050'
|
||||
},
|
||||
scale: {
|
||||
ticks: {
|
||||
beginAtZero: true,
|
||||
stepSize: 2000
|
||||
},
|
||||
reverse: false
|
||||
},
|
||||
animation: {
|
||||
animateRotate: false
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var polarchartData = {
|
||||
labels: ["Africa", "Asia", "Europe", "Latin America", "North America"],
|
||||
datasets: [{
|
||||
label: "Population (millions)",
|
||||
backgroundColor: themeColors,
|
||||
data: [2478, 5267, 734, 784, 433]
|
||||
}],
|
||||
};
|
||||
|
||||
var polarChartconfig = {
|
||||
type: 'polarArea',
|
||||
|
||||
// Chart Options
|
||||
options: polarchartOptions,
|
||||
|
||||
data: polarchartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var polarChart = new Chart(polarChartctx, polarChartconfig);
|
||||
|
||||
|
||||
|
||||
|
||||
// Bubble Chart
|
||||
// ---------------------------------------
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var bubbleChartctx = $("#bubble-chart");
|
||||
|
||||
var randomScalingFactor = function () {
|
||||
return (Math.random() > 0.5 ? 1.0 : -1.0) * Math.round(Math.random() * 100);
|
||||
};
|
||||
|
||||
// Chart Options
|
||||
var bubblechartOptions = {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
scales: {
|
||||
xAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: "GDP (PPP)"
|
||||
}
|
||||
}],
|
||||
yAxes: [{
|
||||
display: true,
|
||||
gridLines: {
|
||||
color: grid_line_color,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: "Happiness"
|
||||
},
|
||||
ticks: {
|
||||
stepSize: 0.5
|
||||
},
|
||||
}]
|
||||
},
|
||||
title: {
|
||||
display: true,
|
||||
text: 'Predicted world population (millions) in 2050'
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var bubblechartData = {
|
||||
animation: {
|
||||
duration: 10000
|
||||
},
|
||||
datasets: [{
|
||||
label: ["China"],
|
||||
backgroundColor: "rgba(255,221,50,0.2)",
|
||||
borderColor: "rgba(255,221,50,1)",
|
||||
data: [{
|
||||
x: 21269017,
|
||||
y: 5.245,
|
||||
r: 15
|
||||
}],
|
||||
}, {
|
||||
label: ["Denmark"],
|
||||
backgroundColor: "rgba(60,186,159,0.2)",
|
||||
borderColor: "rgba(60,186,159,1)",
|
||||
data: [{
|
||||
x: 258702,
|
||||
y: 7.526,
|
||||
r: 10
|
||||
}]
|
||||
}, {
|
||||
label: ["Germany"],
|
||||
backgroundColor: "rgba(0,0,0,0.2)",
|
||||
borderColor: $black,
|
||||
data: [{
|
||||
x: 3979083,
|
||||
y: 6.994,
|
||||
r: 15
|
||||
}]
|
||||
}, {
|
||||
label: ["Japan"],
|
||||
backgroundColor: "rgba(193,46,12,0.2)",
|
||||
borderColor: "rgba(193,46,12,1)",
|
||||
data: [{
|
||||
x: 4931877,
|
||||
y: 5.921,
|
||||
r: 15
|
||||
}]
|
||||
}]
|
||||
};
|
||||
|
||||
var bubbleChartconfig = {
|
||||
type: 'bubble',
|
||||
|
||||
// Chart Options
|
||||
options: bubblechartOptions,
|
||||
|
||||
data: bubblechartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var bubbleChart = new Chart(bubbleChartctx, bubbleChartconfig);
|
||||
|
||||
|
||||
|
||||
// Scatter Chart
|
||||
// ------------------------------------
|
||||
|
||||
//Get the context of the Chart canvas element we want to select
|
||||
var scatterChartctx = $("#scatter-chart");
|
||||
|
||||
// Chart Options
|
||||
var scatterchartOptions = {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 800,
|
||||
title: {
|
||||
display: false,
|
||||
text: 'Chart.js Scatter Chart'
|
||||
},
|
||||
scales: {
|
||||
xAxes: [{
|
||||
position: 'top',
|
||||
gridLines: {
|
||||
color: scatter_grid_color,
|
||||
drawTicks: false,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: 'x axis'
|
||||
}
|
||||
}],
|
||||
yAxes: [{
|
||||
position: 'right',
|
||||
gridLines: {
|
||||
color: scatter_grid_color,
|
||||
drawTicks: false,
|
||||
},
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: 'y axis'
|
||||
}
|
||||
}]
|
||||
}
|
||||
};
|
||||
|
||||
// Chart Data
|
||||
var scatterchartData = {
|
||||
datasets: [{
|
||||
label: "My First dataset",
|
||||
data: [{
|
||||
x: 65,
|
||||
y: 28,
|
||||
}, {
|
||||
x: 59,
|
||||
y: 48,
|
||||
}, {
|
||||
x: 80,
|
||||
y: 40,
|
||||
}, {
|
||||
x: 81,
|
||||
y: 19,
|
||||
}, {
|
||||
x: 56,
|
||||
y: 86,
|
||||
}, {
|
||||
x: 55,
|
||||
y: 27,
|
||||
}, {
|
||||
x: 40,
|
||||
y: 89,
|
||||
}],
|
||||
backgroundColor: "rgba(209,212,219,.3)",
|
||||
borderColor: "transparent",
|
||||
pointBorderColor: $scatter_point_light,
|
||||
pointBackgroundColor: $white,
|
||||
pointBorderWidth: 2,
|
||||
pointHoverBorderWidth: 2,
|
||||
pointRadius: 4,
|
||||
}, {
|
||||
label: "My Second dataset",
|
||||
data: [{
|
||||
x: 45,
|
||||
y: 17,
|
||||
}, {
|
||||
x: 25,
|
||||
y: 62,
|
||||
}, {
|
||||
x: 16,
|
||||
y: 78,
|
||||
}, {
|
||||
x: 36,
|
||||
y: 88,
|
||||
}, {
|
||||
x: 67,
|
||||
y: 26,
|
||||
}, {
|
||||
x: 18,
|
||||
y: 48,
|
||||
}, {
|
||||
x: 76,
|
||||
y: 73,
|
||||
}],
|
||||
backgroundColor: "rgba(81,117,224,.6)",
|
||||
borderColor: "transparent",
|
||||
pointBorderColor: $scatter_point_dark,
|
||||
pointBackgroundColor: $white,
|
||||
pointBorderWidth: 2,
|
||||
pointHoverBorderWidth: 2,
|
||||
pointRadius: 4,
|
||||
}]
|
||||
};
|
||||
|
||||
var scatterChartconfig = {
|
||||
type: 'scatter',
|
||||
|
||||
// Chart Options
|
||||
options: scatterchartOptions,
|
||||
|
||||
data: scatterchartData
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var scatterChart = new Chart(scatterChartctx, scatterChartconfig);
|
||||
|
||||
});
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,327 @@
|
||||
/*=========================================================================================
|
||||
File Name: chart-echart.js
|
||||
Description: echarts examples
|
||||
----------------------------------------------------------------------------------------
|
||||
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
|
||||
Author: PIXINVENT
|
||||
Author URL: http://www.themeforest.net/user/pixinvent
|
||||
==========================================================================================*/
|
||||
|
||||
$(window).on("load", function(){
|
||||
|
||||
var $dark_green = '#4ea397';
|
||||
var $green = '#22c3aa';
|
||||
var $light_green = '#7bd9a5';
|
||||
var $lighten_green = '#a8e7d2';
|
||||
|
||||
|
||||
|
||||
// Bar chart
|
||||
// ------------------------------
|
||||
|
||||
var barChart = echarts.init(document.getElementById('bar-chart'));
|
||||
|
||||
|
||||
// var i;
|
||||
function randomize() {
|
||||
return Math.round(300 + Math.random() * 700) / 10
|
||||
};
|
||||
|
||||
var barChartoption = {
|
||||
legend: {},
|
||||
tooltip: {},
|
||||
dataset: {
|
||||
source: [
|
||||
['product', '2015', '2016', '2017'],
|
||||
['Matcha Latte', randomize(), randomize(), randomize()],
|
||||
['Milk Tea', randomize(), randomize(), randomize()],
|
||||
['Cheese Cocoa', randomize(), randomize(), randomize()],
|
||||
['Walnut Brownie', randomize(), randomize(), randomize()],
|
||||
],
|
||||
},
|
||||
|
||||
|
||||
xAxis: {
|
||||
type: 'category',
|
||||
splitLine: { show: true },
|
||||
},
|
||||
yAxis: {},
|
||||
// Declare several bar series, each will be mapped
|
||||
// to a column of dataset.source by default.
|
||||
series: [
|
||||
{
|
||||
type: 'bar',
|
||||
itemStyle: {color: $dark_green},
|
||||
},
|
||||
{
|
||||
type: 'bar',
|
||||
itemStyle: {color: $green},
|
||||
},
|
||||
{
|
||||
type: 'bar',
|
||||
itemStyle: {color: $light_green},
|
||||
}
|
||||
]
|
||||
};
|
||||
barChart.setOption(barChartoption);
|
||||
|
||||
|
||||
|
||||
// Line chart
|
||||
// ------------------------------
|
||||
|
||||
var lineChart = echarts.init(document.getElementById('line-chart'));
|
||||
|
||||
data = [["2000-06-05",116],["2000-06-06",129],["2000-06-07",135],["2000-06-08",86],["2000-06-09",73],["2000-06-10",85],["2000-06-11",73],["2000-06-12",68],["2000-06-13",92],["2000-06-14",130],["2000-06-15",245],["2000-06-16",139],["2000-06-17",115],["2000-06-18",111],["2000-06-19",309],["2000-06-20",206],["2000-06-21",137],["2000-06-22",128],["2000-06-23",85],["2000-06-24",94],["2000-06-25",71],["2000-06-26",106],["2000-06-27",84],["2000-06-28",93],["2000-06-29",85],["2000-06-30",73],["2000-07-01",83],["2000-07-02",125],["2000-07-03",107],["2000-07-04",82],["2000-07-05",44],["2000-07-06",72],["2000-07-07",106],["2000-07-08",107],["2000-07-09",66],["2000-07-10",91],["2000-07-11",92],["2000-07-12",113],["2000-07-13",107],["2000-07-14",131],["2000-07-15",111],["2000-07-16",64],["2000-07-17",69],["2000-07-18",88],["2000-07-19",77],["2000-07-20",83],["2000-07-21",111],["2000-07-22",57],["2000-07-23",55],["2000-07-24",60]];
|
||||
|
||||
var dateList = data.map(function (item) {
|
||||
return item[0];
|
||||
});
|
||||
var valueList = data.map(function (item) {
|
||||
return item[1];
|
||||
});
|
||||
|
||||
var lineChartoption = {
|
||||
|
||||
// Make gradient line here
|
||||
visualMap: [{
|
||||
show: false,
|
||||
type: 'continuous',
|
||||
seriesIndex: 0,
|
||||
min: 0,
|
||||
max: 400,
|
||||
color: [$dark_green, $lighten_green]
|
||||
}],
|
||||
tooltip: {
|
||||
trigger: 'axis'
|
||||
},
|
||||
xAxis: [{
|
||||
data: dateList,
|
||||
splitLine: {show: true}
|
||||
}],
|
||||
yAxis: [{
|
||||
splitLine: {show: false}
|
||||
}],
|
||||
series: [{
|
||||
type: 'line',
|
||||
showSymbol: false,
|
||||
data: valueList
|
||||
}]
|
||||
};
|
||||
|
||||
lineChart.setOption(lineChartoption);
|
||||
|
||||
|
||||
// Pie chart
|
||||
// ------------------------------
|
||||
|
||||
var pieChart = echarts.init(document.getElementById('pie-chart'));
|
||||
|
||||
var pieChartoption = {
|
||||
tooltip : {
|
||||
trigger: 'item',
|
||||
formatter: "{a} <br/>{b} : {c} ({d}%)"
|
||||
},
|
||||
legend: {
|
||||
orient: 'vertical',
|
||||
left: 'left',
|
||||
data: ['Direct interview', 'Email marketing', 'Alliance advertising', 'Video ad', 'Search engine']
|
||||
},
|
||||
series : [
|
||||
{
|
||||
name: 'Access source',
|
||||
type: 'pie',
|
||||
radius : '55%',
|
||||
center: ['50%', '60%'],
|
||||
color: ['#FF9F43','#28C76F','#EA5455','#87ceeb','#7367F0'],
|
||||
data: [
|
||||
{value: 335, name: 'Direct interview'},
|
||||
{value: 310, name: 'Email marketing'},
|
||||
{value: 234, name: 'Alliance advertising'},
|
||||
{value: 135, name: 'Video ad'},
|
||||
{value: 1548, name: 'Search engine'}
|
||||
],
|
||||
itemStyle: {
|
||||
emphasis: {
|
||||
shadowBlur: 10,
|
||||
shadowOffsetX: 0,
|
||||
shadowColor: 'rgba(0, 0, 0, 0.5)'
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
};
|
||||
|
||||
pieChart.setOption(pieChartoption);
|
||||
|
||||
|
||||
// Scatter chart
|
||||
// ------------------------------
|
||||
|
||||
var scatterChart = echarts.init(document.getElementById('scatter-chart'));
|
||||
|
||||
var data = [
|
||||
[[28604,77,17096869,'Australia',1990],[31163,77.4,27662440,'Canada',1990],[1516,68,1154605773,'China',1990],[13670,74.7,10582082,'Cuba',1990],[28599,75,4986705,'Finland',1990],[29476,77.1,56943299,'France',1990],[31476,75.4,78958237,'Germany',1990],[28666,78.1,254830,'Iceland',1990],[1777,57.7,870601776,'India',1990],[29550,79.1,122249285,'Japan',1990],[2076,67.9,20194354,'North Korea',1990],[12087,72,42972254,'South Korea',1990],[24021,75.4,3397534,'New Zealand',1990],[43296,76.8,4240375,'Norway',1990],[10088,70.8,38195258,'Poland',1990],[19349,69.6,147568552,'Russia',1990],[10670,67.3,53994605,'Turkey',1990],[26424,75.7,57110117,'United Kingdom',1990],[37062,75.4,252847810,'United States',1990]],
|
||||
[[44056,81.8,23968973,'Australia',2015],[43294,81.7,35939927,'Canada',2015],[13334,76.9,1376048943,'China',2015],[21291,78.5,11389562,'Cuba',2015],[38923,80.8,5503457,'Finland',2015],[37599,81.9,64395345,'France',2015],[44053,81.1,80688545,'Germany',2015],[42182,82.8,329425,'Iceland',2015],[5903,66.8,1311050527,'India',2015],[36162,83.5,126573481,'Japan',2015],[1390,71.4,25155317,'North Korea',2015],[34644,80.7,50293439,'South Korea',2015],[34186,80.6,4528526,'New Zealand',2015],[64304,81.6,5210967,'Norway',2015],[24787,77.3,38611794,'Poland',2015],[23038,73.13,143456918,'Russia',2015],[19360,76.5,78665830,'Turkey',2015],[38225,81.4,64715810,'United Kingdom',2015],[53354,79.1,321773631,'United States',2015]]
|
||||
];
|
||||
|
||||
var scatterChartoption = {
|
||||
|
||||
legend: {
|
||||
right: 10,
|
||||
data: ['1990', '2015']
|
||||
},
|
||||
xAxis: {
|
||||
splitLine: {
|
||||
lineStyle: {
|
||||
type: 'dashed'
|
||||
}
|
||||
}
|
||||
},
|
||||
yAxis: {
|
||||
splitLine: {
|
||||
lineStyle: {
|
||||
type: 'dashed'
|
||||
}
|
||||
},
|
||||
scale: true
|
||||
},
|
||||
series: [{
|
||||
name: '1990',
|
||||
data: data[0],
|
||||
type: 'scatter',
|
||||
symbolSize: function (data) {
|
||||
return Math.sqrt(data[2]) / 5e2;
|
||||
},
|
||||
label: {
|
||||
emphasis: {
|
||||
show: true,
|
||||
formatter: function (param) {
|
||||
return param.data[3];
|
||||
},
|
||||
position: 'top'
|
||||
}
|
||||
},
|
||||
itemStyle: {
|
||||
normal: {
|
||||
shadowBlur: 10,
|
||||
shadowColor: 'rgba(120, 36, 50, 0.5)',
|
||||
shadowOffsetY: 5,
|
||||
color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{
|
||||
offset: 0,
|
||||
color: 'rgb(251, 118, 123)'
|
||||
}, {
|
||||
offset: 1,
|
||||
color: 'rgb(204, 46, 72)'
|
||||
}])
|
||||
}
|
||||
}
|
||||
}, {
|
||||
name: '2015',
|
||||
data: data[1],
|
||||
type: 'scatter',
|
||||
symbolSize: function (data) {
|
||||
return Math.sqrt(data[2]) / 5e2;
|
||||
},
|
||||
label: {
|
||||
emphasis: {
|
||||
show: true,
|
||||
formatter: function (param) {
|
||||
return param.data[3];
|
||||
},
|
||||
position: 'top'
|
||||
}
|
||||
},
|
||||
itemStyle: {
|
||||
normal: {
|
||||
shadowBlur: 10,
|
||||
shadowColor: 'rgba(25, 100, 150, 0.5)',
|
||||
shadowOffsetY: 5,
|
||||
color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{
|
||||
offset: 0,
|
||||
color: 'rgb(129, 227, 238)'
|
||||
}, {
|
||||
offset: 1,
|
||||
color: 'rgb(25, 183, 207)'
|
||||
}])
|
||||
}
|
||||
}
|
||||
}]
|
||||
};
|
||||
|
||||
scatterChart.setOption(scatterChartoption);
|
||||
|
||||
|
||||
// Polar chart
|
||||
// ------------------------------
|
||||
|
||||
var polarChart = echarts.init(document.getElementById('polar-chart'));
|
||||
|
||||
var data = [];
|
||||
|
||||
for (var i = 0; i <= 360; i++) {
|
||||
var t = i / 180 * Math.PI;
|
||||
var r = Math.sin(2 * t) * Math.cos(2 * t);
|
||||
data.push([r, i]);
|
||||
}
|
||||
|
||||
var polarChartoption = {
|
||||
legend: {
|
||||
data: ['line']
|
||||
},
|
||||
polar: {
|
||||
center: ['50%', '54%']
|
||||
},
|
||||
tooltip: {
|
||||
trigger: 'axis',
|
||||
axisPointer: {
|
||||
type: 'cross'
|
||||
}
|
||||
},
|
||||
angleAxis: {
|
||||
type: 'value',
|
||||
startAngle: 0
|
||||
},
|
||||
radiusAxis: {
|
||||
min: 0
|
||||
},
|
||||
series: [{
|
||||
coordinateSystem: 'polar',
|
||||
name: 'line',
|
||||
type: 'line',
|
||||
showSymbol: false,
|
||||
data: data
|
||||
}],
|
||||
animationDuration: 2000
|
||||
};
|
||||
|
||||
polarChart.setOption(polarChartoption);
|
||||
|
||||
|
||||
// Radar chart
|
||||
// ------------------------------
|
||||
|
||||
var radarChart = echarts.init(document.getElementById('radar-chart'));
|
||||
|
||||
var radarChartoption = {
|
||||
tooltip: {},
|
||||
radar: {
|
||||
indicator: [
|
||||
{ name: 'Attack', max: 20 },
|
||||
{ name: 'Defensive', max: 20 },
|
||||
{ name: 'Speed', max: 20 },
|
||||
{ name: 'Power', max: 20 },
|
||||
{ name: 'Endurance', max: 20 },
|
||||
{ name: 'Agile', max: 20 }
|
||||
]
|
||||
},
|
||||
series: [{
|
||||
name: 'Ability value',
|
||||
type: 'radar',
|
||||
data: [{ value: [19, 9, 18, 16, 16, 20] }]
|
||||
}]
|
||||
};
|
||||
|
||||
radarChart.setOption(radarChartoption);
|
||||
|
||||
});
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,108 @@
|
||||
/*=========================================================================================
|
||||
File Name: maps.js
|
||||
Description: google maps
|
||||
----------------------------------------------------------------------------------------
|
||||
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
|
||||
Author: PIXINVENT
|
||||
Author URL: http://www.themeforest.net/user/pixinvent
|
||||
==========================================================================================*/
|
||||
|
||||
// Gmaps Maps
|
||||
// ------------------------------
|
||||
|
||||
$(window).on("load", function(){
|
||||
|
||||
// Basic Map
|
||||
// ------------------------------
|
||||
|
||||
map = new GMaps({
|
||||
div: '#basic-map',
|
||||
lat: 9.0820,
|
||||
lng: 8.6753,
|
||||
zoom: 7
|
||||
});
|
||||
map.addMarker({
|
||||
lat: 9.0765,
|
||||
lng: 7.3986,
|
||||
title: 'Marker1',
|
||||
draggable: true,
|
||||
});
|
||||
|
||||
// Info Window
|
||||
// ------------------------------
|
||||
|
||||
map = new GMaps({
|
||||
div: '#info-window',
|
||||
lat: 47.4073,
|
||||
lng: 7.7526,
|
||||
zoom: 7
|
||||
});
|
||||
map.addMarker({
|
||||
lat: 47.4073,
|
||||
lng: 7.76,
|
||||
title: 'Marker1',
|
||||
infoWindow: {
|
||||
content: '<p>Marker1</p>'
|
||||
}
|
||||
});
|
||||
map.addMarker({
|
||||
lat: 47.3769,
|
||||
lng: 8.5417,
|
||||
title: 'Marker2',
|
||||
infoWindow: {
|
||||
content: '<p>Marker2</p>'
|
||||
}
|
||||
});
|
||||
map.addMarker({
|
||||
lat: 46.9480,
|
||||
lng: 7.4474,
|
||||
title: 'Marker3',
|
||||
infoWindow: {
|
||||
content: '<p>Marker3</p>'
|
||||
}
|
||||
});
|
||||
|
||||
// Street View Markers
|
||||
// ------------------------------
|
||||
|
||||
map = GMaps.createPanorama({
|
||||
el: '#street-view',
|
||||
lat : 52.201272,
|
||||
lng: 0.118720,
|
||||
});
|
||||
|
||||
// Random Value for street heading
|
||||
|
||||
$(".street-heading").on("click", function(){
|
||||
map = GMaps.createPanorama({
|
||||
el: '#street-view',
|
||||
lat : 52.201272,
|
||||
lng: 0.118720,
|
||||
pov: { heading: Math.random() * 360, pitch: 5 }
|
||||
});
|
||||
});
|
||||
|
||||
// Random Value for street Pitch
|
||||
|
||||
$(".street-pitch").on("click", function(){
|
||||
map = GMaps.createPanorama({
|
||||
el: '#street-view',
|
||||
lat : 52.201272,
|
||||
lng: 0.118720,
|
||||
pov: { heading: 20, pitch: Math.random() * 180 - 90 }
|
||||
});
|
||||
});
|
||||
|
||||
// Random Value for both street heading and street pitch
|
||||
|
||||
$(".street-both").on("click", function(){
|
||||
map = GMaps.createPanorama({
|
||||
el: '#street-view',
|
||||
lat : 52.201272,
|
||||
lng: 0.118720,
|
||||
pov: { heading: Math.random() * 360, pitch: Math.random() * 180 - 90 }
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
$(window).on("load",function(){map=new GMaps({div:"#basic-map",lat:9.082,lng:8.6753,zoom:7}),map.addMarker({lat:9.0765,lng:7.3986,title:"Marker1",draggable:!0}),map=new GMaps({div:"#info-window",lat:47.4073,lng:7.7526,zoom:7}),map.addMarker({lat:47.4073,lng:7.76,title:"Marker1",infoWindow:{content:"<p>Marker1</p>"}}),map.addMarker({lat:47.3769,lng:8.5417,title:"Marker2",infoWindow:{content:"<p>Marker2</p>"}}),map.addMarker({lat:46.948,lng:7.4474,title:"Marker3",infoWindow:{content:"<p>Marker3</p>"}}),map=GMaps.createPanorama({el:"#street-view",lat:52.201272,lng:.11872}),$(".street-heading").on("click",function(){map=GMaps.createPanorama({el:"#street-view",lat:52.201272,lng:.11872,pov:{heading:360*Math.random(),pitch:5}})}),$(".street-pitch").on("click",function(){map=GMaps.createPanorama({el:"#street-view",lat:52.201272,lng:.11872,pov:{heading:20,pitch:180*Math.random()-90}})}),$(".street-both").on("click",function(){map=GMaps.createPanorama({el:"#street-view",lat:52.201272,lng:.11872,pov:{heading:360*Math.random(),pitch:180*Math.random()-90}})})});
|
||||
Reference in New Issue
Block a user