D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
realadss
/
kavyaeventz.in
/
backup
/
js
/
pages
/
Filename :
dashboard4.js
back
Copy
//[Dashboard Javascript] //Project: WebkitX Admin - Responsive Admin Template //Primary use: Used only for the main dashboard (index.html) $(function () { 'use strict'; var options = { series: [{ name: "Revenue", data: [90, 71, 65, 91, 40, 112, 99, 51, 128] }], chart: { height: 270, type: 'area', zoom: { enabled: false }, toolbar: { show: false, } }, dataLabels: { enabled: false }, stroke: { curve: 'smooth' }, colors: ['#ffffff'], grid: { show: false, padding: { top: 0, bottom: 0, right: 0, left: -10 }, }, legend: { show: false, }, xaxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep'], labels: { show: false, }, axisBorder: { show: false, }, axisTicks: { show: false, }, }, yaxis: { labels: { show: false, } }, }; var chart = new ApexCharts(document.querySelector("#revenue6"), options); chart.render(); var options = { chart: { height: 245, type: "radialBar" }, series: [67], colors: ["#671efb"], plotOptions: { radialBar: { hollow: { margin: 15, size: "70%" }, dataLabels: { showOn: "always", name: { offsetY: -10, show: false, color: "#888", fontSize: "13px" }, value: { color: "#111", fontSize: "30px", show: true } } } }, stroke: { lineCap: "round", }, labels: ["Progress"] }; var chart = new ApexCharts(document.querySelector("#revenue5"), options); chart.render(); var options = { series: [{ name: 'Net Profit', data: [44, 55, 57, 56, 61, 58, 63] }, { name: 'Revenue', data: [76, 85, 101, 98, 87, 105, 91] }], chart: { type: 'bar', foreColor:"#bac0c7", height: 363, toolbar: { show: false, } }, plotOptions: { bar: { horizontal: false, columnWidth: '30%', endingShape: 'rounded' }, }, dataLabels: { enabled: false, }, grid: { show: false, }, stroke: { show: true, width: 2, colors: ['transparent'] }, colors: ['#ffa800', '#999999'], xaxis: { categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug'], }, yaxis: { }, legend: { show: false, }, fill: { opacity: 1 }, tooltip: { y: { formatter: function (val) { return "$ " + val + " thousands" } }, marker: { show: false, }, } }; var chart = new ApexCharts(document.querySelector("#recent_trend"), options); chart.render(); var spark3 = { chart: { id: 'spark3', group: 'sparks', type: 'line', height: 190, sparkline: { enabled: true }, dropShadow: { enabled: true, top: 5, left: 1, blur: 5, opacity: 0.1, } }, series: [{ data: [25, 66, 41, 59, 25, 44, 12, 36, 9, 21] }], stroke: { curve: 'smooth' }, markers: { size: 0 }, grid: { padding: { top: 50, bottom: 50, right: 0, left: 0 } }, colors: ['#14908a'], tooltip: { x: { show: false }, y: { title: { formatter: function formatter(val) { return ''; } } } } } new ApexCharts(document.querySelector("#spark3"), spark3).render(); }); // End of use strict