📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
reelsolusturmascripti.demodesign.com.tr
/
adminpnl
/
themes
/
assets
/
js
📝
chartjs.js
← Geri Dön
$(function() { 'use strict'; // Bar chart if($('#chartjsBar').length) { new Chart($("#chartjsBar"), { type: 'bar', data: { labels: [ "China", "America", "India", "Germany", "Oman"], datasets: [ { label: "Population", backgroundColor: ["#b1cfec","#7ee5e5","#66d1d1","#f77eb9","#4d8af0"], data: [2478,5267,734,2084,1433] } ] }, options: { legend: { display: false }, } }); } if($('#chartjsLine').length) { new Chart($('#chartjsLine'), { type: 'line', data: { labels: [1500,1600,1700,1750,1800,1850,1900,1950,1999,2050], datasets: [{ data: [86,114,106,106,107,111,133,221,783,2478], label: "Africa", borderColor: "#7ee5e5", backgroundColor: "rgba(0,0,0,0)", fill: false }, { data: [282,350,411,502,635,809,947,1402,3700,5267], label: "Asia", borderColor: "#f77eb9", backgroundColor: "rgba(0,0,0,0)", fill: false } ] } }); } if($('#chartjsDoughnut').length) { new Chart($('#chartjsDoughnut'), { type: 'doughnut', data: { labels: ["Africa", "Asia", "Europe"], datasets: [ { label: "Population (millions)", backgroundColor: ["#7ee5e5","#f77eb9","#4d8af0"], data: [2478,4267,1334] } ] } }); } if($('#chartjsArea').length) { new Chart($('#chartjsArea'), { type: 'line', data: { labels: [1500,1600,1700,1750,1800,1850,1900,1950,1999,2050], datasets: [{ data: [86,114,106,106,107,111,133,221,783,2478], label: "Africa", borderColor: "#7ee5e5", backgroundColor: "#c2fdfd", fill: true }, { data: [282,350,411,502,635,809,947,1402,3700,5267], label: "Asia", borderColor: "#f77eb9", backgroundColor: "#ffbedd", fill: true } ] } }); } if($('#chartjsPie').length) { new Chart($('#chartjsPie'), { type: 'pie', data: { labels: ["Africa", "Asia", "Europe"], datasets: [{ label: "Population (millions)", backgroundColor: ["#7ee5e5","#f77eb9","#4d8af0"], data: [2478,4267,1334] }] } }); } if($('#chartjsBubble').length) { new Chart($('#chartjsBubble'), { type: 'bubble', data: { labels: "Africa", datasets: [ { label: ["China"], backgroundColor: "#c2fdfd", borderColor: "#7ee5e5", data: [{ x: 21269017, y: 5.245, r: 15 }] }, { label: ["Denmark"], backgroundColor: "#ffbedd", borderColor: "#f77eb9", data: [{ x: 258702, y: 7.526, r: 10 }] }, { label: ["Germany"], backgroundColor: "#bbd4ff", borderColor: "#4d8af0", data: [{ x: 3979083, y: 6.994, r: 15 }] }, { label: ["Japan"], backgroundColor: "#ffe69d", borderColor: "#fbbc06", data: [{ x: 4931877, y: 5.921, r: 15 }] } ] }, options: { scales: { yAxes: [{ scaleLabel: { display: true, labelString: "Happiness" } }], xAxes: [{ scaleLabel: { display: true, labelString: "GDP (PPP)" } }] } } }); } if($('#chartjsRadar').length) { new Chart($('#chartjsRadar'), { type: 'radar', data: { labels: ["Africa", "Asia", "Europe", "Latin America", "North America"], datasets: [ { label: "1950", fill: true, backgroundColor: "#ffbedd", borderColor: "#f77eb9", pointBorderColor: "#f77eb9", pointBackgroundColor: "#ffbedd", data: [8.77,55.61,21.69,6.62,6.82] }, { label: "2050", fill: true, backgroundColor: "#c2fdfd", borderColor: "#7ee5e5", pointBorderColor: "#7ee5e5", pointBackgroundColor: "#c2fdfd", pointBorderColor: "#fff", data: [25.48,54.16,7.61,8.06,4.45] } ] } }); } if($('#chartjsPolarArea').length) { new Chart($('#chartjsPolarArea'), { type: 'polarArea', data: { labels: ["Africa", "Asia", "Europe", "Latin America"], datasets: [ { label: "Population (millions)", backgroundColor: ["#f77eb9", "#7ee5e5","#4d8af0","#fbbc06"], data: [2478,5267,734,784] } ] } }); } if($('#chartjsGroupedBar').length) { new Chart($('#chartjsGroupedBar'), { type: 'bar', data: { labels: ["1900", "1950", "1999", "2050"], datasets: [ { label: "Africa", backgroundColor: "#f77eb9", data: [133,221,783,2478] }, { label: "Europe", backgroundColor: "#7ee5e5", data: [408,547,675,734] } ] } }); } if($('#chartjsMixedBar').length) { new Chart($('#chartjsMixedBar'), { type: 'bar', data: { labels: ["1900", "1950", "1999", "2050"], datasets: [{ label: "Europe", type: "line", borderColor: "#66d1d1", backgroundColor: "rgba(0,0,0,0)", data: [408,547,675,734], fill: false }, { label: "Africa", type: "line", borderColor: "#ff3366", backgroundColor: "rgba(0,0,0,0)", data: [133,221,783,2478], fill: false }, { label: "Europe", type: "bar", backgroundColor: "#f77eb9", // backgroundColor: "rgba(0,0,0,0)", data: [408,547,675,734], }, { label: "Africa", type: "bar", backgroundColor: "#7ee5e5", backgroundColorHover: "#3e95cd", // backgroundColor: "rgba(0,0,0,0)", data: [133,221,783,2478] } ] } }); } });
💾 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