📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
falscripti.demodesign.com.tr
/
ns-admin
/
assets
/
js
/
pages
📝
chartjs.init.js
← Geri Dön
/* Template Name: Minia - Admin & Dashboard Template Author: Themesbrand Website: https://themesbrand.com/ Contact: themesbrand@gmail.com File: ChartJs init Js File */ // get colors array from the string function getChartColorsArray(chartId) { var colors = $(chartId).attr('data-colors'); var colors = JSON.parse(colors); return colors.map(function(value){ var newValue = value.replace(' ', ''); if(newValue.indexOf('--') != -1) { var color = getComputedStyle(document.documentElement).getPropertyValue(newValue); if(color) return color; } else { return newValue; } }) } !function($) { "use strict"; var ChartJs = function() {}; ChartJs.prototype.respChart = function(selector,type,data, options) { Chart.defaults.global.defaultFontColor="#858d98", Chart.defaults.scale.gridLines.color="rgba(133, 141, 152, 0.1)"; // 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 lineChartColors = getChartColorsArray("#lineChart"); var lineChart = { labels: ["January", "February", "March", "April", "May", "June", "July", "August", "September","October"], datasets: [ { label: "Sales Analytics", fill: true, lineTension: 0.5, backgroundColor: lineChartColors[0], borderColor: lineChartColors[1], borderCapStyle: 'butt', borderDash: [], borderDashOffset: 0.0, borderJoinStyle: 'miter', pointBorderColor: lineChartColors[1], pointBackgroundColor: "#fff", //3 pointBorderWidth: 1, pointHoverRadius: 5, pointHoverBackgroundColor: lineChartColors[1], pointHoverBorderColor: "#fff", //5 pointHoverBorderWidth: 2, pointRadius: 1, pointHitRadius: 10, data: [65, 59, 80, 81, 56, 55, 40, 55, 30, 80] }, { label: "Monthly Earnings", fill: true, lineTension: 0.5, backgroundColor: lineChartColors[2], borderColor: lineChartColors[3], borderCapStyle: 'butt', borderDash: [], borderDashOffset: 0.0, borderJoinStyle: 'miter', pointBorderColor: lineChartColors[3], pointBackgroundColor: "#fff", pointBorderWidth: 1, pointHoverRadius: 5, pointHoverBackgroundColor: lineChartColors[3], pointHoverBorderColor: "#eef0f2", pointHoverBorderWidth: 2, pointRadius: 1, pointHitRadius: 10, data: [80, 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 donutChartColors = getChartColorsArray("#doughnut"); var donutChart = { labels: [ "Desktops", "Tablets" ], datasets: [ { data: [300, 210], backgroundColor: donutChartColors, hoverBackgroundColor: donutChartColors, hoverBorderColor: "#fff" }] }; this.respChart($("#doughnut"),'Doughnut',donutChart); //Pie chart var pieChartColors = getChartColorsArray("#pie"); var pieChart = { labels: [ "Desktops", "Tablets" ], datasets: [ { data: [300, 180], backgroundColor: pieChartColors, hoverBackgroundColor: pieChartColors, hoverBorderColor: "#fff" }] }; this.respChart($("#pie"),'Pie',pieChart); //barchart var barChartColors = getChartColorsArray("#bar"); var barChart = { labels: ["January", "February", "March", "April", "May", "June", "July"], datasets: [ { label: "Sales Analytics", backgroundColor: barChartColors[0], borderColor: barChartColors[0], borderWidth: 1, hoverBackgroundColor: barChartColors[1], hoverBorderColor: barChartColors[1], data: [65, 59, 81, 45, 56, 80, 50,20] } ] }; var barOpts = { scales: { xAxes: [{ barPercentage: 0.4 }] } } this.respChart($("#bar"),'Bar',barChart, barOpts); //radar chart var radarChartColors = getChartColorsArray("#radar"); var radarChart = { labels: ["Eating", "Drinking", "Sleeping", "Designing", "Coding", "Cycling", "Running"], datasets: [ { label: "Desktops", backgroundColor: radarChartColors[0], //"rgba(42, 181, 125, 0.2)", borderColor: radarChartColors[1], //"#2ab57d", pointBackgroundColor: radarChartColors[1], //"#2ab57d", pointBorderColor: "#fff", pointHoverBackgroundColor: "#fff", pointHoverBorderColor: radarChartColors[1], //"#2ab57d", data: [65, 59, 90, 81, 56, 55, 40] }, { label: "Tablets", backgroundColor: radarChartColors[2], //"rgba(81, 86, 190, 0.2)", borderColor: radarChartColors[3], //"#5156be", pointBackgroundColor: radarChartColors[3], //"#5156be", pointBorderColor: "#fff", pointHoverBackgroundColor: "#fff", pointHoverBorderColor: radarChartColors[3], //"#5156be", data: [28, 48, 40, 19, 96, 27, 100] } ] }; this.respChart($("#radar"),'Radar',radarChart); //Polar area chart var polarChartColors = getChartColorsArray("#polarArea"); var polarChart = { datasets: [{ data: [ 11, 16, 7, 18 ], backgroundColor: polarChartColors, 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);
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula