mirror of
https://gitee.com/AiShiYuShiJiePingXing/bigscreen.git
synced 2026-01-21 05:40:35 +08:00
245 lines
8.0 KiB
JavaScript
245 lines
8.0 KiB
JavaScript
/*
|
|
Template Name: Stexo - Responsive Bootstrap 4 Admin Dashboard
|
|
Author: Themesdesign
|
|
Website: www.themesdesign.in
|
|
File: Chart js
|
|
*/
|
|
|
|
!function($) {
|
|
"use strict";
|
|
|
|
var ChartJs = function() {};
|
|
|
|
ChartJs.prototype.respChart = function(selector,type,data, options) {
|
|
// get selector by context
|
|
var ctx = selector.get(0).getContext("2d");
|
|
// pointing parent container to make chart js inherit its width
|
|
var container = $(selector).parent();
|
|
|
|
// enable resizing matter
|
|
$(window).resize( generateChart );
|
|
|
|
// this function produce the responsive Chart JS
|
|
function generateChart(){
|
|
// make chart width fit with its container
|
|
var ww = selector.attr('width', $(container).width() );
|
|
switch(type){
|
|
case 'Line':
|
|
new Chart(ctx, {type: 'line', data: data, options: options});
|
|
break;
|
|
case 'Doughnut':
|
|
new Chart(ctx, {type: 'doughnut', data: data, options: options});
|
|
break;
|
|
case 'Pie':
|
|
new Chart(ctx, {type: 'pie', data: data, options: options});
|
|
break;
|
|
case 'Bar':
|
|
new Chart(ctx, {type: 'bar', data: data, options: options});
|
|
break;
|
|
case 'Radar':
|
|
new Chart(ctx, {type: 'radar', data: data, options: options});
|
|
break;
|
|
case 'PolarArea':
|
|
new Chart(ctx, {data: data, type: 'polarArea', options: options});
|
|
break;
|
|
}
|
|
// Initiate new chart or Redraw
|
|
|
|
};
|
|
// run function - render chart at first load
|
|
generateChart();
|
|
},
|
|
//init
|
|
ChartJs.prototype.init = function() {
|
|
//creating lineChart
|
|
var lineChart = {
|
|
labels: ["January", "February", "March", "April", "May", "June", "July", "August", "September","October"],
|
|
datasets: [
|
|
{
|
|
label: "Sales Analytics",
|
|
fill: true,
|
|
lineTension: 0.5,
|
|
backgroundColor: "rgba(48, 65, 155, 0.2)",
|
|
borderColor: "#30419b",
|
|
borderCapStyle: 'butt',
|
|
borderDash: [],
|
|
borderDashOffset: 0.0,
|
|
borderJoinStyle: 'miter',
|
|
pointBorderColor: "#30419b",
|
|
pointBackgroundColor: "#fff",
|
|
pointBorderWidth: 1,
|
|
pointHoverRadius: 5,
|
|
pointHoverBackgroundColor: "#30419b",
|
|
pointHoverBorderColor: "#30419b",
|
|
pointHoverBorderWidth: 2,
|
|
pointRadius: 1,
|
|
pointHitRadius: 10,
|
|
data: [30, 59, 80, 81, 56, 55, 40, 55, 30, 80]
|
|
},
|
|
{
|
|
label: "Monthly Earnings",
|
|
fill: true,
|
|
lineTension: 0.5,
|
|
backgroundColor: "rgba(240, 244, 247, 0.2)",
|
|
borderColor: "#f0f4f7",
|
|
borderCapStyle: 'butt',
|
|
borderDash: [],
|
|
borderDashOffset: 0.0,
|
|
borderJoinStyle: 'miter',
|
|
pointBorderColor: "#f0f4f7",
|
|
pointBackgroundColor: "#fff",
|
|
pointBorderWidth: 1,
|
|
pointHoverRadius: 5,
|
|
pointHoverBackgroundColor: "#f0f4f7",
|
|
pointHoverBorderColor: "#eef0f2",
|
|
pointHoverBorderWidth: 2,
|
|
pointRadius: 1,
|
|
pointHitRadius: 10,
|
|
data: [30, 23, 56, 65, 23, 35, 85, 25, 92, 36]
|
|
}
|
|
]
|
|
};
|
|
|
|
var lineOpts = {
|
|
scales: {
|
|
yAxes: [{
|
|
ticks: {
|
|
max: 100,
|
|
min: 20,
|
|
stepSize: 10
|
|
}
|
|
}]
|
|
}
|
|
};
|
|
|
|
this.respChart($("#lineChart"),'Line',lineChart, lineOpts);
|
|
|
|
//donut chart
|
|
var donutChart = {
|
|
labels: [
|
|
"Desktops",
|
|
"Tablets"
|
|
],
|
|
datasets: [
|
|
{
|
|
data: [300, 100],
|
|
backgroundColor: [
|
|
"#30419b",
|
|
"#f0f4f7"
|
|
],
|
|
hoverBackgroundColor: [
|
|
"#30419b",
|
|
"#f0f4f7"
|
|
],
|
|
hoverBorderColor: "#fff"
|
|
}]
|
|
};
|
|
this.respChart($("#doughnut"),'Doughnut',donutChart);
|
|
|
|
|
|
//Pie chart
|
|
var pieChart = {
|
|
labels: [
|
|
"Desktops",
|
|
"Tablets"
|
|
],
|
|
datasets: [
|
|
{
|
|
data: [350, 200],
|
|
backgroundColor: [
|
|
"#02c58d",
|
|
"#f0f4f7"
|
|
],
|
|
hoverBackgroundColor: [
|
|
"#02c58d",
|
|
"#f0f4f7"
|
|
],
|
|
hoverBorderColor: "#fff"
|
|
}]
|
|
};
|
|
this.respChart($("#pie"),'Pie',pieChart);
|
|
|
|
|
|
//barchart
|
|
var barChart = {
|
|
labels: ["January", "February", "March", "April", "May", "June", "July"],
|
|
datasets: [
|
|
{
|
|
label: "Sales Analytics",
|
|
backgroundColor: "rgba(2, 197, 141, 0.4)",
|
|
borderColor: "#02c58d",
|
|
borderWidth: 1,
|
|
hoverBackgroundColor: "rgba(2, 197, 141, 0.5)",
|
|
hoverBorderColor: "#02c58d",
|
|
data: [55, 63, 83, 65, 76, 80, 50,20]
|
|
}
|
|
]
|
|
};
|
|
this.respChart($("#bar"),'Bar',barChart);
|
|
|
|
|
|
//radar chart
|
|
var radarChart = {
|
|
labels: ["Eating", "Drinking", "Sleeping", "Designing", "Coding", "Cycling", "Running"],
|
|
datasets: [
|
|
{
|
|
label: "Desktops",
|
|
backgroundColor: "rgba(2, 197, 141, 0.2)",
|
|
borderColor: "#02c58d",
|
|
pointBackgroundColor: "#02c58d",
|
|
pointBorderColor: "#fff",
|
|
pointHoverBackgroundColor: "#fff",
|
|
pointHoverBorderColor: "#02c58d",
|
|
data: [65, 59, 90, 81, 56, 55, 40]
|
|
},
|
|
{
|
|
label: "Tablets",
|
|
backgroundColor: "rgba(48, 65, 155, 0.4)",
|
|
borderColor: "#30419b",
|
|
pointBackgroundColor: "#30419b",
|
|
pointBorderColor: "#fff",
|
|
pointHoverBackgroundColor: "#fff",
|
|
pointHoverBorderColor: "#30419b",
|
|
data: [28, 48, 40, 19, 96, 27, 100]
|
|
}
|
|
]
|
|
};
|
|
this.respChart($("#radar"),'Radar',radarChart);
|
|
|
|
//Polar area chart
|
|
var polarChart = {
|
|
datasets: [{
|
|
data: [
|
|
8,
|
|
3,
|
|
5,
|
|
6
|
|
],
|
|
backgroundColor: [
|
|
"#30419b",
|
|
"#59c6fb",
|
|
"#02c58d",
|
|
"#fcbe2d"
|
|
],
|
|
label: 'My dataset', // for legend
|
|
hoverBorderColor: "#fff"
|
|
}],
|
|
labels: [
|
|
"Series 1",
|
|
"Series 2",
|
|
"Series 3",
|
|
"Series 4"
|
|
]
|
|
};
|
|
this.respChart($("#polarArea"),'PolarArea',polarChart);
|
|
},
|
|
$.ChartJs = new ChartJs, $.ChartJs.Constructor = ChartJs
|
|
|
|
}(window.jQuery),
|
|
|
|
//initializing
|
|
function($) {
|
|
"use strict";
|
|
$.ChartJs.init()
|
|
}(window.jQuery);
|