restore composer.json, add mysqli extension
This commit is contained in:
989
public/vendor/dashboard/app-assets/js/scripts/charts/chart-apex.js
vendored
Executable file
989
public/vendor/dashboard/app-assets/js/scripts/charts/chart-apex.js
vendored
Executable file
@@ -0,0 +1,989 @@
|
||||
/*=========================================================================================
|
||||
File Name: chart-apex.js
|
||||
Description: Apexchart Examples
|
||||
----------------------------------------------------------------------------------------
|
||||
Item Name: Vuesax HTML Admin Template
|
||||
Version: 1.1
|
||||
Author: PIXINVENT
|
||||
Author URL: http://www.themeforest.net/user/pixinvent
|
||||
==========================================================================================*/
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
var $primary = '#7367F0',
|
||||
$success = '#28C76F',
|
||||
$danger = '#EA5455',
|
||||
$warning = '#FF9F43',
|
||||
$info = '#00cfe8',
|
||||
$label_color_light = '#dae1e7';
|
||||
|
||||
var themeColors = [$primary, $success, $danger, $warning, $info];
|
||||
|
||||
// Line Chart
|
||||
// ----------------------------------
|
||||
var lineChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'line',
|
||||
zoom: {
|
||||
enabled: false
|
||||
}
|
||||
},
|
||||
colors: themeColors,
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
stroke: {
|
||||
curve: 'straight'
|
||||
},
|
||||
series: [{
|
||||
name: "Desktops",
|
||||
data: [10, 41, 35, 51, 49, 62, 69, 91, 148],
|
||||
}],
|
||||
title: {
|
||||
text: 'Product Trends by Month',
|
||||
align: 'left'
|
||||
},
|
||||
grid: {
|
||||
row: {
|
||||
colors: ['#f3f3f3', 'transparent'], // takes an array which will be repeated on columns
|
||||
opacity: 0.5
|
||||
},
|
||||
},
|
||||
xaxis: {
|
||||
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep'],
|
||||
},
|
||||
yaxis: {
|
||||
tickAmount: 5,
|
||||
}
|
||||
}
|
||||
var lineChart = new ApexCharts(
|
||||
document.querySelector("#line-chart"),
|
||||
lineChartOptions
|
||||
);
|
||||
lineChart.render();
|
||||
|
||||
// Line Area Chart
|
||||
// ----------------------------------
|
||||
var lineAreaOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'area',
|
||||
},
|
||||
colors: themeColors,
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
stroke: {
|
||||
curve: 'smooth'
|
||||
},
|
||||
series: [{
|
||||
name: 'series1',
|
||||
data: [31, 40, 28, 51, 42, 109, 100]
|
||||
}, {
|
||||
name: 'series2',
|
||||
data: [11, 32, 45, 32, 34, 52, 41]
|
||||
}],
|
||||
legend: {
|
||||
offsetY: -10
|
||||
},
|
||||
xaxis: {
|
||||
type: 'datetime',
|
||||
categories: ["2019-09-18T00:00:00", "2019-09-18T01:00:00", "2019-09-18T02:00:00",
|
||||
"2019-09-18T03:00:00", "2019-09-18T04:00:00", "2019-09-18T05:00:00",
|
||||
"2019-09-18T06:00:00"
|
||||
],
|
||||
},
|
||||
tooltip: {
|
||||
x: {
|
||||
format: 'dd/MM/yy HH:mm'
|
||||
},
|
||||
}
|
||||
}
|
||||
var lineAreaChart = new ApexCharts(
|
||||
document.querySelector("#line-area-chart"),
|
||||
lineAreaOptions
|
||||
);
|
||||
lineAreaChart.render();
|
||||
|
||||
// Column Chart
|
||||
// ----------------------------------
|
||||
var columnChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'bar',
|
||||
},
|
||||
colors: themeColors,
|
||||
plotOptions: {
|
||||
bar: {
|
||||
horizontal: false,
|
||||
endingShape: 'rounded',
|
||||
columnWidth: '55%',
|
||||
},
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
stroke: {
|
||||
show: true,
|
||||
width: 2,
|
||||
colors: ['transparent']
|
||||
},
|
||||
series: [{
|
||||
name: 'Net Profit',
|
||||
data: [44, 55, 57, 56, 61, 58, 63, 60, 66]
|
||||
}, {
|
||||
name: 'Revenue',
|
||||
data: [76, 85, 101, 98, 87, 105, 91, 114, 94]
|
||||
}, {
|
||||
name: 'Free Cash Flow',
|
||||
data: [35, 41, 36, 26, 45, 48, 52, 53, 41]
|
||||
}],
|
||||
legend: {
|
||||
offsetY: -10
|
||||
},
|
||||
xaxis: {
|
||||
categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct'],
|
||||
},
|
||||
yaxis: {
|
||||
title: {
|
||||
text: '$ (thousands)'
|
||||
}
|
||||
},
|
||||
fill: {
|
||||
opacity: 1
|
||||
|
||||
},
|
||||
tooltip: {
|
||||
y: {
|
||||
formatter: function (val) {
|
||||
return "$ " + val + " thousands"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
var columnChart = new ApexCharts(
|
||||
document.querySelector("#column-chart"),
|
||||
columnChartOptions
|
||||
);
|
||||
|
||||
columnChart.render();
|
||||
|
||||
// Bar Chart
|
||||
// ----------------------------------
|
||||
var barChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'bar',
|
||||
},
|
||||
colors: themeColors,
|
||||
plotOptions: {
|
||||
bar: {
|
||||
horizontal: true,
|
||||
}
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
series: [{
|
||||
data: [400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]
|
||||
}],
|
||||
xaxis: {
|
||||
categories: ['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany'],
|
||||
tickAmount: 5
|
||||
}
|
||||
}
|
||||
var barChart = new ApexCharts(
|
||||
document.querySelector("#bar-chart"),
|
||||
barChartOptions
|
||||
);
|
||||
barChart.render();
|
||||
|
||||
|
||||
// Mixed Chart
|
||||
// -----------------------------
|
||||
var mixedChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'line',
|
||||
stacked: false,
|
||||
},
|
||||
colors: themeColors,
|
||||
stroke: {
|
||||
width: [0, 2, 5],
|
||||
curve: 'smooth'
|
||||
},
|
||||
plotOptions: {
|
||||
bar: {
|
||||
columnWidth: '50%'
|
||||
}
|
||||
},
|
||||
// colors: ['#3A5794', '#A5C351', '#E14A84'],
|
||||
series: [{
|
||||
name: 'TEAM A',
|
||||
type: 'column',
|
||||
data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30]
|
||||
}, {
|
||||
name: 'TEAM B',
|
||||
type: 'area',
|
||||
data: [44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43]
|
||||
}, {
|
||||
name: 'TEAM C',
|
||||
type: 'line',
|
||||
data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39]
|
||||
}],
|
||||
fill: {
|
||||
opacity: [0.85, 0.25, 1],
|
||||
gradient: {
|
||||
inverseColors: false,
|
||||
shade: 'light',
|
||||
type: "vertical",
|
||||
opacityFrom: 0.85,
|
||||
opacityTo: 0.55,
|
||||
stops: [0, 100, 100, 100]
|
||||
}
|
||||
},
|
||||
labels: ['01/01/2003', '02/01/2003', '03/01/2003', '04/01/2003', '05/01/2003', '06/01/2003', '07/01/2003', '08/01/2003', '09/01/2003', '10/01/2003', '11/01/2003'],
|
||||
markers: {
|
||||
size: 0
|
||||
},
|
||||
legend: {
|
||||
offsetY: -10
|
||||
},
|
||||
xaxis: {
|
||||
type: 'datetime'
|
||||
},
|
||||
yaxis: {
|
||||
min: 0,
|
||||
tickAmount: 5,
|
||||
title: {
|
||||
text: 'Points'
|
||||
}
|
||||
},
|
||||
tooltip: {
|
||||
shared: true,
|
||||
intersect: false,
|
||||
y: {
|
||||
formatter: function (y) {
|
||||
if (typeof y !== "undefined") {
|
||||
return y.toFixed(0) + " views";
|
||||
}
|
||||
return y;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
var mixedChart = new ApexCharts(
|
||||
document.querySelector("#mixed-chart"),
|
||||
mixedChartOptions
|
||||
);
|
||||
mixedChart.render();
|
||||
|
||||
// Candlestick Chart
|
||||
// -----------------------------
|
||||
var candleStickOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'candlestick',
|
||||
},
|
||||
colors: themeColors,
|
||||
series: [{
|
||||
data: [{
|
||||
x: new Date(1538778600000),
|
||||
y: [6629.81, 6650.5, 6623.04, 6633.33]
|
||||
},
|
||||
{
|
||||
x: new Date(1538780400000),
|
||||
y: [6632.01, 6643.59, 6620, 6630.11]
|
||||
},
|
||||
{
|
||||
x: new Date(1538782200000),
|
||||
y: [6630.71, 6648.95, 6623.34, 6635.65]
|
||||
},
|
||||
{
|
||||
x: new Date(1538784000000),
|
||||
y: [6635.65, 6651, 6629.67, 6638.24]
|
||||
},
|
||||
{
|
||||
x: new Date(1538785800000),
|
||||
y: [6638.24, 6640, 6620, 6624.47]
|
||||
},
|
||||
{
|
||||
x: new Date(1538787600000),
|
||||
y: [6624.53, 6636.03, 6621.68, 6624.31]
|
||||
},
|
||||
{
|
||||
x: new Date(1538789400000),
|
||||
y: [6624.61, 6632.2, 6617, 6626.02]
|
||||
},
|
||||
{
|
||||
x: new Date(1538791200000),
|
||||
y: [6627, 6627.62, 6584.22, 6603.02]
|
||||
},
|
||||
{
|
||||
x: new Date(1538793000000),
|
||||
y: [6605, 6608.03, 6598.95, 6604.01]
|
||||
},
|
||||
{
|
||||
x: new Date(1538794800000),
|
||||
y: [6604.5, 6614.4, 6602.26, 6608.02]
|
||||
},
|
||||
{
|
||||
x: new Date(1538796600000),
|
||||
y: [6608.02, 6610.68, 6601.99, 6608.91]
|
||||
},
|
||||
{
|
||||
x: new Date(1538798400000),
|
||||
y: [6608.91, 6618.99, 6608.01, 6612]
|
||||
},
|
||||
{
|
||||
x: new Date(1538800200000),
|
||||
y: [6612, 6615.13, 6605.09, 6612]
|
||||
},
|
||||
{
|
||||
x: new Date(1538802000000),
|
||||
y: [6612, 6624.12, 6608.43, 6622.95]
|
||||
},
|
||||
{
|
||||
x: new Date(1538803800000),
|
||||
y: [6623.91, 6623.91, 6615, 6615.67]
|
||||
},
|
||||
{
|
||||
x: new Date(1538805600000),
|
||||
y: [6618.69, 6618.74, 6610, 6610.4]
|
||||
},
|
||||
{
|
||||
x: new Date(1538807400000),
|
||||
y: [6611, 6622.78, 6610.4, 6614.9]
|
||||
},
|
||||
{
|
||||
x: new Date(1538809200000),
|
||||
y: [6614.9, 6626.2, 6613.33, 6623.45]
|
||||
},
|
||||
{
|
||||
x: new Date(1538811000000),
|
||||
y: [6623.48, 6627, 6618.38, 6620.35]
|
||||
},
|
||||
{
|
||||
x: new Date(1538812800000),
|
||||
y: [6619.43, 6620.35, 6610.05, 6615.53]
|
||||
},
|
||||
{
|
||||
x: new Date(1538814600000),
|
||||
y: [6615.53, 6617.93, 6610, 6615.19]
|
||||
},
|
||||
{
|
||||
x: new Date(1538816400000),
|
||||
y: [6615.19, 6621.6, 6608.2, 6620]
|
||||
},
|
||||
{
|
||||
x: new Date(1538818200000),
|
||||
y: [6619.54, 6625.17, 6614.15, 6620]
|
||||
},
|
||||
{
|
||||
x: new Date(1538820000000),
|
||||
y: [6620.33, 6634.15, 6617.24, 6624.61]
|
||||
},
|
||||
{
|
||||
x: new Date(1538821800000),
|
||||
y: [6625.95, 6626, 6611.66, 6617.58]
|
||||
},
|
||||
{
|
||||
x: new Date(1538823600000),
|
||||
y: [6619, 6625.97, 6595.27, 6598.86]
|
||||
},
|
||||
{
|
||||
x: new Date(1538825400000),
|
||||
y: [6598.86, 6598.88, 6570, 6587.16]
|
||||
},
|
||||
{
|
||||
x: new Date(1538827200000),
|
||||
y: [6588.86, 6600, 6580, 6593.4]
|
||||
},
|
||||
{
|
||||
x: new Date(1538829000000),
|
||||
y: [6593.99, 6598.89, 6585, 6587.81]
|
||||
},
|
||||
{
|
||||
x: new Date(1538830800000),
|
||||
y: [6587.81, 6592.73, 6567.14, 6578]
|
||||
},
|
||||
{
|
||||
x: new Date(1538832600000),
|
||||
y: [6578.35, 6581.72, 6567.39, 6579]
|
||||
},
|
||||
{
|
||||
x: new Date(1538834400000),
|
||||
y: [6579.38, 6580.92, 6566.77, 6575.96]
|
||||
},
|
||||
{
|
||||
x: new Date(1538836200000),
|
||||
y: [6575.96, 6589, 6571.77, 6588.92]
|
||||
},
|
||||
{
|
||||
x: new Date(1538838000000),
|
||||
y: [6588.92, 6594, 6577.55, 6589.22]
|
||||
},
|
||||
{
|
||||
x: new Date(1538839800000),
|
||||
y: [6589.3, 6598.89, 6589.1, 6596.08]
|
||||
},
|
||||
{
|
||||
x: new Date(1538841600000),
|
||||
y: [6597.5, 6600, 6588.39, 6596.25]
|
||||
},
|
||||
{
|
||||
x: new Date(1538843400000),
|
||||
y: [6598.03, 6600, 6588.73, 6595.97]
|
||||
},
|
||||
{
|
||||
x: new Date(1538845200000),
|
||||
y: [6595.97, 6602.01, 6588.17, 6602]
|
||||
},
|
||||
{
|
||||
x: new Date(1538847000000),
|
||||
y: [6602, 6607, 6596.51, 6599.95]
|
||||
},
|
||||
{
|
||||
x: new Date(1538848800000),
|
||||
y: [6600.63, 6601.21, 6590.39, 6591.02]
|
||||
},
|
||||
{
|
||||
x: new Date(1538850600000),
|
||||
y: [6591.02, 6603.08, 6591, 6591]
|
||||
},
|
||||
{
|
||||
x: new Date(1538852400000),
|
||||
y: [6591, 6601.32, 6585, 6592]
|
||||
},
|
||||
{
|
||||
x: new Date(1538854200000),
|
||||
y: [6593.13, 6596.01, 6590, 6593.34]
|
||||
},
|
||||
{
|
||||
x: new Date(1538856000000),
|
||||
y: [6593.34, 6604.76, 6582.63, 6593.86]
|
||||
},
|
||||
{
|
||||
x: new Date(1538857800000),
|
||||
y: [6593.86, 6604.28, 6586.57, 6600.01]
|
||||
},
|
||||
{
|
||||
x: new Date(1538859600000),
|
||||
y: [6601.81, 6603.21, 6592.78, 6596.25]
|
||||
},
|
||||
{
|
||||
x: new Date(1538861400000),
|
||||
y: [6596.25, 6604.2, 6590, 6602.99]
|
||||
},
|
||||
{
|
||||
x: new Date(1538863200000),
|
||||
y: [6602.99, 6606, 6584.99, 6587.81]
|
||||
},
|
||||
{
|
||||
x: new Date(1538865000000),
|
||||
y: [6587.81, 6595, 6583.27, 6591.96]
|
||||
},
|
||||
{
|
||||
x: new Date(1538866800000),
|
||||
y: [6591.97, 6596.07, 6585, 6588.39]
|
||||
},
|
||||
{
|
||||
x: new Date(1538868600000),
|
||||
y: [6587.6, 6598.21, 6587.6, 6594.27]
|
||||
},
|
||||
{
|
||||
x: new Date(1538870400000),
|
||||
y: [6596.44, 6601, 6590, 6596.55]
|
||||
},
|
||||
{
|
||||
x: new Date(1538872200000),
|
||||
y: [6598.91, 6605, 6596.61, 6600.02]
|
||||
},
|
||||
{
|
||||
x: new Date(1538874000000),
|
||||
y: [6600.55, 6605, 6589.14, 6593.01]
|
||||
},
|
||||
{
|
||||
x: new Date(1538875800000),
|
||||
y: [6593.15, 6605, 6592, 6603.06]
|
||||
},
|
||||
{
|
||||
x: new Date(1538877600000),
|
||||
y: [6603.07, 6604.5, 6599.09, 6603.89]
|
||||
},
|
||||
{
|
||||
x: new Date(1538879400000),
|
||||
y: [6604.44, 6604.44, 6600, 6603.5]
|
||||
},
|
||||
{
|
||||
x: new Date(1538881200000),
|
||||
y: [6603.5, 6603.99, 6597.5, 6603.86]
|
||||
},
|
||||
{
|
||||
x: new Date(1538883000000),
|
||||
y: [6603.85, 6605, 6600, 6604.07]
|
||||
},
|
||||
{
|
||||
x: new Date(1538884800000),
|
||||
y: [6604.98, 6606, 6604.07, 6606]
|
||||
},
|
||||
]
|
||||
}],
|
||||
xaxis: {
|
||||
type: 'datetime'
|
||||
},
|
||||
yaxis: {
|
||||
tickAmount: 5,
|
||||
tooltip: {
|
||||
enabled: true
|
||||
}
|
||||
}
|
||||
}
|
||||
var candleStickChart = new ApexCharts(
|
||||
document.querySelector("#candlestick-chart"),
|
||||
candleStickOptions
|
||||
);
|
||||
candleStickChart.render();
|
||||
|
||||
// 3D Bubble Chart
|
||||
// -----------------------------
|
||||
|
||||
function generateDataBubbleChart(baseval, count, yrange) {
|
||||
var i = 0;
|
||||
var seriesBubbleChart = [];
|
||||
while (i < count) {
|
||||
// var x = Math.floor(Math.random() * (750 - 1 + 1)) + 1;
|
||||
var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
|
||||
var z = Math.floor(Math.random() * (75 - 15 + 1)) + 15;
|
||||
|
||||
seriesBubbleChart.push([baseval, y, z]);
|
||||
baseval += 86400000;
|
||||
i++;
|
||||
}
|
||||
return seriesBubbleChart;
|
||||
}
|
||||
var bubbleChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'bubble',
|
||||
},
|
||||
colors: themeColors,
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
legend: {
|
||||
offsetY: -10
|
||||
},
|
||||
series: [{
|
||||
name: 'Product1',
|
||||
data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
|
||||
min: 10,
|
||||
max: 60
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Product2',
|
||||
data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
|
||||
min: 10,
|
||||
max: 60
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Product3',
|
||||
data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
|
||||
min: 10,
|
||||
max: 60
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Product4',
|
||||
data: generateDataBubbleChart(new Date('11 Feb 2017 GMT').getTime(), 20, {
|
||||
min: 10,
|
||||
max: 60
|
||||
})
|
||||
}
|
||||
],
|
||||
fill: {
|
||||
type: 'gradient',
|
||||
},
|
||||
xaxis: {
|
||||
tickAmount: 12,
|
||||
type: 'datetime',
|
||||
|
||||
labels: {
|
||||
rotate: 0,
|
||||
}
|
||||
},
|
||||
yaxis: {
|
||||
max: 70,
|
||||
tickAmount: 5,
|
||||
},
|
||||
theme: {
|
||||
palette: 'palette2'
|
||||
}
|
||||
}
|
||||
var bubbleChart = new ApexCharts(
|
||||
document.querySelector("#bubble-chart"),
|
||||
bubbleChartOptions
|
||||
);
|
||||
bubbleChart.render();
|
||||
|
||||
// Scatter Chart
|
||||
// -----------------------------
|
||||
|
||||
var scatterChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'scatter',
|
||||
zoom: {
|
||||
enabled: true,
|
||||
type: 'xy'
|
||||
},
|
||||
},
|
||||
colors: themeColors,
|
||||
series: [{
|
||||
name: "SAMPLE A",
|
||||
data: [
|
||||
[16.4, 5.4],
|
||||
[21.7, 2],
|
||||
[25.4, 3],
|
||||
[19, 2],
|
||||
[10.9, 1],
|
||||
[13.6, 3.2],
|
||||
[10.9, 7.4],
|
||||
[10.9, 0],
|
||||
[10.9, 8.2],
|
||||
[16.4, 0],
|
||||
[16.4, 1.8],
|
||||
[13.6, 0.3],
|
||||
[13.6, 0],
|
||||
[29.9, 0],
|
||||
[27.1, 2.3],
|
||||
[16.4, 0],
|
||||
[13.6, 3.7],
|
||||
[10.9, 5.2],
|
||||
[16.4, 6.5],
|
||||
[10.9, 0],
|
||||
[24.5, 7.1],
|
||||
[10.9, 0],
|
||||
[8.1, 4.7],
|
||||
[19, 0],
|
||||
[21.7, 1.8],
|
||||
[27.1, 0],
|
||||
[24.5, 0],
|
||||
[27.1, 0],
|
||||
[29.9, 1.5],
|
||||
[27.1, 0.8],
|
||||
[22.1, 2]
|
||||
]
|
||||
}, {
|
||||
name: "SAMPLE B",
|
||||
data: [
|
||||
[6.4, 13.4],
|
||||
[1.7, 11],
|
||||
[5.4, 8],
|
||||
[9, 17],
|
||||
[1.9, 4],
|
||||
[3.6, 12.2],
|
||||
[1.9, 14.4],
|
||||
[1.9, 9],
|
||||
[1.9, 13.2],
|
||||
[1.4, 7],
|
||||
[6.4, 8.8],
|
||||
[3.6, 4.3],
|
||||
[1.6, 10],
|
||||
[9.9, 2],
|
||||
[7.1, 15],
|
||||
[1.4, 0],
|
||||
[3.6, 13.7],
|
||||
[1.9, 15.2],
|
||||
[6.4, 16.5],
|
||||
[0.9, 10],
|
||||
[4.5, 17.1],
|
||||
[10.9, 10],
|
||||
[0.1, 14.7],
|
||||
[9, 10],
|
||||
[12.7, 11.8],
|
||||
[2.1, 10],
|
||||
[2.5, 10],
|
||||
[27.1, 10],
|
||||
[2.9, 11.5],
|
||||
[7.1, 10.8],
|
||||
[2.1, 12]
|
||||
]
|
||||
}, {
|
||||
name: "SAMPLE C",
|
||||
data: [
|
||||
[21.7, 3],
|
||||
[23.6, 3.5],
|
||||
[24.6, 3],
|
||||
[29.9, 3],
|
||||
[21.7, 20],
|
||||
[23, 2],
|
||||
[10.9, 3],
|
||||
[28, 4],
|
||||
[27.1, 0.3],
|
||||
[16.4, 4],
|
||||
[13.6, 0],
|
||||
[19, 5],
|
||||
[22.4, 3],
|
||||
[24.5, 3],
|
||||
[32.6, 3],
|
||||
[27.1, 4],
|
||||
[29.6, 6],
|
||||
[31.6, 8],
|
||||
[21.6, 5],
|
||||
[20.9, 4],
|
||||
[22.4, 0],
|
||||
[32.6, 10.3],
|
||||
[29.7, 20.8],
|
||||
[24.5, 0.8],
|
||||
[21.4, 0],
|
||||
[21.7, 6.9],
|
||||
[28.6, 7.7],
|
||||
[15.4, 0],
|
||||
[18.1, 0],
|
||||
[33.4, 0],
|
||||
[16.4, 0]
|
||||
]
|
||||
}],
|
||||
legend: {
|
||||
offsetY: -10
|
||||
},
|
||||
xaxis: {
|
||||
tickAmount: 10
|
||||
},
|
||||
yaxis: {
|
||||
tickAmount: 7
|
||||
}
|
||||
}
|
||||
var scatterChart = new ApexCharts(
|
||||
document.querySelector("#scatter-chart"),
|
||||
scatterChartOptions
|
||||
);
|
||||
scatterChart.render();
|
||||
|
||||
// Pie Chart
|
||||
// -----------------------------
|
||||
var pieChartOptions = {
|
||||
chart: {
|
||||
type: 'pie',
|
||||
height: 350
|
||||
},
|
||||
colors: themeColors,
|
||||
labels: ['Team A', 'Team B', 'Team C', 'Team D'],
|
||||
series: [44, 55, 13, 43],
|
||||
legend: {
|
||||
itemMargin: {
|
||||
horizontal: 2
|
||||
},
|
||||
},
|
||||
responsive: [{
|
||||
breakpoint: 480,
|
||||
options: {
|
||||
chart: {
|
||||
width: 350
|
||||
},
|
||||
legend: {
|
||||
position: 'bottom'
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
var pieChart = new ApexCharts(
|
||||
document.querySelector("#pie-chart"),
|
||||
pieChartOptions
|
||||
);
|
||||
pieChart.render();
|
||||
|
||||
// Donut Chart
|
||||
// -----------------------------
|
||||
var donutChartOptions = {
|
||||
chart: {
|
||||
type: 'donut',
|
||||
height: 350
|
||||
},
|
||||
colors: themeColors,
|
||||
series: [44, 55, 41, 17],
|
||||
legend: {
|
||||
itemMargin: {
|
||||
horizontal: 2
|
||||
},
|
||||
},
|
||||
responsive: [{
|
||||
breakpoint: 480,
|
||||
options: {
|
||||
chart: {
|
||||
width: 350
|
||||
},
|
||||
legend: {
|
||||
position: 'bottom'
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
var donutChart = new ApexCharts(
|
||||
document.querySelector("#donut-chart"),
|
||||
donutChartOptions
|
||||
);
|
||||
|
||||
donutChart.render();
|
||||
|
||||
// Radial Bar Chart
|
||||
// -----------------------------
|
||||
var radialBarChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'radialBar',
|
||||
},
|
||||
colors: themeColors,
|
||||
plotOptions: {
|
||||
radialBar: {
|
||||
dataLabels: {
|
||||
name: {
|
||||
fontSize: '22px',
|
||||
},
|
||||
value: {
|
||||
fontSize: '16px',
|
||||
},
|
||||
total: {
|
||||
show: true,
|
||||
label: 'Total',
|
||||
// color: $label_color,
|
||||
formatter: function (w) {
|
||||
// By default this function returns the average of all series. The below is just an example to show the use of custom formatter function
|
||||
return 249
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
series: [44, 55, 67, 83],
|
||||
labels: ['Apples', 'Oranges', 'Bananas', 'Berries'],
|
||||
}
|
||||
var radialBarChart = new ApexCharts(
|
||||
document.querySelector("#radial-bar-chart"),
|
||||
radialBarChartOptions
|
||||
);
|
||||
radialBarChart.render();
|
||||
|
||||
// Radar Chart
|
||||
// -----------------------------
|
||||
var radarChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'radar',
|
||||
},
|
||||
colors: themeColors,
|
||||
series: [{
|
||||
name: 'Series 1',
|
||||
data: [80, 50, 30, 40, 100, 20],
|
||||
}],
|
||||
labels: ['January', 'February', 'March', 'April', 'May', 'June'],
|
||||
dataLabels: {
|
||||
style: {
|
||||
color: $label_color_light
|
||||
}
|
||||
}
|
||||
}
|
||||
var radarChart = new ApexCharts(document.querySelector("#radar-chart"), radarChartOptions);
|
||||
radarChart.render();
|
||||
|
||||
// Heat Map Chart
|
||||
// -----------------------------
|
||||
function generateData(count, yrange) {
|
||||
var i = 0,
|
||||
series = [];
|
||||
while (i < count) {
|
||||
var x = 'w' + (i + 1).toString(),
|
||||
y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
|
||||
|
||||
series.push({
|
||||
x: x,
|
||||
y: y
|
||||
});
|
||||
i++;
|
||||
}
|
||||
return series;
|
||||
}
|
||||
var heatChartOptions = {
|
||||
chart: {
|
||||
height: 350,
|
||||
type: 'heatmap',
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
colors: [$primary],
|
||||
series: [{
|
||||
name: 'Metric1',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric2',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric3',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric4',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric5',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric6',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric7',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric8',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
},
|
||||
{
|
||||
name: 'Metric9',
|
||||
data: generateData(18, {
|
||||
min: 0,
|
||||
max: 90
|
||||
})
|
||||
}
|
||||
],
|
||||
}
|
||||
var heatChart = new ApexCharts(
|
||||
document.querySelector("#heat-map-chart"),
|
||||
heatChartOptions);
|
||||
heatChart.render();
|
||||
});
|
||||
1
public/vendor/dashboard/app-assets/js/scripts/charts/chart-apex.min.js
vendored
Executable file
1
public/vendor/dashboard/app-assets/js/scripts/charts/chart-apex.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
697
public/vendor/dashboard/app-assets/js/scripts/charts/chart-chartjs.js
vendored
Executable file
697
public/vendor/dashboard/app-assets/js/scripts/charts/chart-chartjs.js
vendored
Executable file
@@ -0,0 +1,697 @@
|
||||
/*=========================================================================================
|
||||
File Name: chart-chartjs.js
|
||||
Description: Chartjs Examples
|
||||
----------------------------------------------------------------------------------------
|
||||
Item Name: Vuesax HTML Admin Template
|
||||
Version: 1.1
|
||||
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);
|
||||
|
||||
});
|
||||
1
public/vendor/dashboard/app-assets/js/scripts/charts/chart-chartjs.min.js
vendored
Executable file
1
public/vendor/dashboard/app-assets/js/scripts/charts/chart-chartjs.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
328
public/vendor/dashboard/app-assets/js/scripts/charts/chart-echart.js
vendored
Executable file
328
public/vendor/dashboard/app-assets/js/scripts/charts/chart-echart.js
vendored
Executable file
@@ -0,0 +1,328 @@
|
||||
/*=========================================================================================
|
||||
File Name: chart-echart.js
|
||||
Description: echarts examples
|
||||
----------------------------------------------------------------------------------------
|
||||
Item Name: Vuesax HTML Admin Template
|
||||
Version: 1.1
|
||||
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);
|
||||
|
||||
});
|
||||
1
public/vendor/dashboard/app-assets/js/scripts/charts/chart-echart.min.js
vendored
Executable file
1
public/vendor/dashboard/app-assets/js/scripts/charts/chart-echart.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
109
public/vendor/dashboard/app-assets/js/scripts/charts/gmaps/maps.js
vendored
Executable file
109
public/vendor/dashboard/app-assets/js/scripts/charts/gmaps/maps.js
vendored
Executable file
@@ -0,0 +1,109 @@
|
||||
/*=========================================================================================
|
||||
File Name: maps.js
|
||||
Description: google maps
|
||||
----------------------------------------------------------------------------------------
|
||||
Item Name: Vuesax HTML Admin Template
|
||||
Version: 1.1
|
||||
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 }
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
1
public/vendor/dashboard/app-assets/js/scripts/charts/gmaps/maps.min.js
vendored
Executable file
1
public/vendor/dashboard/app-assets/js/scripts/charts/gmaps/maps.min.js
vendored
Executable file
@@ -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