| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- (function($) {
- 'use strict';
- $(function() {
- Chart.defaults.global.legend.labels.usePointStyle = true;
-
- if ($("#serviceSaleProgress").length) {
- var bar = new ProgressBar.Circle(serviceSaleProgress, {
- color: 'url(#gradient)',
- // This has to be the same size as the maximum width to
- // prevent clipping
- strokeWidth: 8,
- trailWidth: 8,
- easing: 'easeInOut',
- duration: 1400,
- text: {
- autoStyleContainer: false
- },
- from: { color: '#aaa', width: 6 },
- to: { color: '#57c7d4', width: 6 }
- });
- bar.animate(.65); // Number from 0.0 to 1.0
- bar.path.style.strokeLinecap = 'round';
- let linearGradient = '<defs><linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="0%" gradientUnits="userSpaceOnUse"><stop offset="20%" stop-color="#da8cff"/><stop offset="50%" stop-color="#9a55ff"/></linearGradient></defs>';
- bar.svg.insertAdjacentHTML('afterBegin', linearGradient);
- }
- if ($("#productSaleProgress").length) {
- var bar = new ProgressBar.Circle(productSaleProgress, {
- color: 'url(#productGradient)',
- // This has to be the same size as the maximum width to
- // prevent clipping
- strokeWidth: 8,
- trailWidth: 8,
- easing: 'easeInOut',
- duration: 1400,
- text: {
- autoStyleContainer: false
- },
- from: { color: '#aaa', width: 6 },
- to: { color: '#57c7d4', width: 6 }
- });
- bar.animate(.6); // Number from 0.0 to 1.0
- bar.path.style.strokeLinecap = 'round';
- let linearGradient = '<defs><linearGradient id="productGradient" x1="0%" y1="0%" x2="100%" y2="0%" gradientUnits="userSpaceOnUse"><stop offset="40%" stop-color="#36d7e8"/><stop offset="70%" stop-color="#b194fa"/></linearGradient></defs>';
- bar.svg.insertAdjacentHTML('afterBegin', linearGradient);
- }
- if ($("#points-chart").length) {
- var ctx = document.getElementById('points-chart').getContext("2d");
- var gradientStrokeViolet = ctx.createLinearGradient(0, 0, 0, 181);
- gradientStrokeViolet.addColorStop(0, 'rgba(218, 140, 255, 1)');
- gradientStrokeViolet.addColorStop(1, 'rgba(154, 85, 255, 1)');
- var myChart = new Chart(ctx, {
- type: 'bar',
- data: {
- labels: [1, 2, 3, 4, 5, 6, 7, 8],
- datasets: [
- {
- label: "North Zone",
- borderColor: gradientStrokeViolet,
- backgroundColor: gradientStrokeViolet,
- hoverBackgroundColor: gradientStrokeViolet,
- pointRadius: 0,
- fill: false,
- borderWidth: 1,
- fill: 'origin',
- data: [20, 40, 15, 35, 25, 50, 30, 20]
- },
- {
- label: "South Zone",
- borderColor: '#e9eaee',
- backgroundColor: '#e9eaee',
- hoverBackgroundColor: '#e9eaee',
- pointRadius: 0,
- fill: false,
- borderWidth: 1,
- fill: 'origin',
- data: [40, 30, 20, 10, 50, 15, 35, 20]
- }
- ]
- },
- options: {
- legend: {
- display: false
- },
- scales: {
- yAxes: [{
- ticks: {
- display: false,
- min: 0,
- stepSize: 10
- },
- gridLines: {
- drawBorder: false,
- display: false
- }
- }],
- xAxes: [{
- gridLines: {
- display:false,
- drawBorder: false,
- color: 'rgba(0,0,0,1)',
- zeroLineColor: '#eeeeee'
- },
- ticks: {
- padding: 20,
- fontColor: "#9c9fa6",
- autoSkip: true,
- },
- barPercentage: 0.7
- }]
- }
- },
- elements: {
- point: {
- radius: 0
- }
- }
- })
- }
- if ($("#events-chart").length) {
- var ctx = document.getElementById('events-chart').getContext("2d");
- var gradientStrokeBlue = ctx.createLinearGradient(0, 0, 0, 181);
- gradientStrokeBlue.addColorStop(0, 'rgba(54, 215, 232, 1)');
- gradientStrokeBlue.addColorStop(1, 'rgba(177, 148, 250, 1)');
- var myChart = new Chart(ctx, {
- type: 'bar',
- data: {
- labels: [1, 2, 3, 4, 5, 6, 7, 8],
- datasets: [
- {
- label: "Domestic",
- borderColor: gradientStrokeBlue,
- backgroundColor: gradientStrokeBlue,
- hoverBackgroundColor: gradientStrokeBlue,
- pointRadius: 0,
- fill: false,
- borderWidth: 1,
- fill: 'origin',
- data: [20, 40, 15, 35, 25, 50, 30, 20]
- },
- {
- label: "International",
- borderColor: '#e9eaee',
- backgroundColor: '#e9eaee',
- hoverBackgroundColor: '#e9eaee',
- pointRadius: 0,
- fill: false,
- borderWidth: 1,
- fill: 'origin',
- data: [40, 30, 20, 10, 50, 15, 35, 20]
- }
- ]
- },
- options: {
- legend: {
- display: false
- },
- scales: {
- yAxes: [{
- ticks: {
- display: false,
- min: 0,
- stepSize: 10
- },
- gridLines: {
- drawBorder: false,
- display: false
- }
- }],
- xAxes: [{
- gridLines: {
- display:false,
- drawBorder: false,
- color: 'rgba(0,0,0,1)',
- zeroLineColor: '#eeeeee'
- },
- ticks: {
- padding: 20,
- fontColor: "#9c9fa6",
- autoSkip: true,
- },
- barPercentage: 0.7
- }]
- }
- },
- elements: {
- point: {
- radius: 0
- }
- }
- })
- }
- if ($("#visit-sale-chart").length) {
- Chart.defaults.global.legend.labels.usePointStyle = true;
- var ctx = document.getElementById('visit-sale-chart').getContext("2d");
- var gradientStrokeViolet = ctx.createLinearGradient(0, 0, 0, 181);
- gradientStrokeViolet.addColorStop(0, 'rgba(218, 140, 255, 1)');
- gradientStrokeViolet.addColorStop(1, 'rgba(154, 85, 255, 1)');
- var gradientLegendViolet = 'linear-gradient(to right, rgba(218, 140, 255, 1), rgba(154, 85, 255, 1))';
-
- var gradientStrokeBlue = ctx.createLinearGradient(0, 0, 0, 360);
- gradientStrokeBlue.addColorStop(0, 'rgba(54, 215, 232, 1)');
- gradientStrokeBlue.addColorStop(1, 'rgba(177, 148, 250, 1)');
- var gradientLegendBlue = 'linear-gradient(to right, rgba(54, 215, 232, 1), rgba(177, 148, 250, 1))';
- var gradientStrokeRed = ctx.createLinearGradient(0, 0, 0, 300);
- gradientStrokeRed.addColorStop(0, 'rgba(255, 191, 150, 1)');
- gradientStrokeRed.addColorStop(1, 'rgba(254, 112, 150, 1)');
- var gradientLegendRed = 'linear-gradient(to right, rgba(255, 191, 150, 1), rgba(254, 112, 150, 1))';
- var myChart = new Chart(ctx, {
- type: 'bar',
- data: {
- labels: ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG'],
- datasets: [
- {
- label: "CHN",
- borderColor: gradientStrokeViolet,
- backgroundColor: gradientStrokeViolet,
- hoverBackgroundColor: gradientStrokeViolet,
- legendColor: gradientLegendViolet,
- pointRadius: 0,
- fill: false,
- borderWidth: 1,
- fill: 'origin',
- data: [20, 40, 15, 35, 25, 50, 30, 20]
- },
- {
- label: "USA",
- borderColor: gradientStrokeRed,
- backgroundColor: gradientStrokeRed,
- hoverBackgroundColor: gradientStrokeRed,
- legendColor: gradientLegendRed,
- pointRadius: 0,
- fill: false,
- borderWidth: 1,
- fill: 'origin',
- data: [40, 30, 20, 10, 50, 15, 35, 40]
- },
- {
- label: "UK",
- borderColor: gradientStrokeBlue,
- backgroundColor: gradientStrokeBlue,
- hoverBackgroundColor: gradientStrokeBlue,
- legendColor: gradientLegendBlue,
- pointRadius: 0,
- fill: false,
- borderWidth: 1,
- fill: 'origin',
- data: [70, 10, 30, 40, 25, 50, 15, 30]
- }
- ]
- },
- options: {
- responsive: true,
- legend: false,
- legendCallback: function(chart) {
- var text = [];
- text.push('<ul>');
- for (var i = 0; i < chart.data.datasets.length; i++) {
- text.push('<li><span class="legend-dots" style="background:' +
- chart.data.datasets[i].legendColor +
- '"></span>');
- if (chart.data.datasets[i].label) {
- text.push(chart.data.datasets[i].label);
- }
- text.push('</li>');
- }
- text.push('</ul>');
- return text.join('');
- },
- scales: {
- yAxes: [{
- ticks: {
- display: false,
- min: 0,
- stepSize: 20,
- max: 80
- },
- gridLines: {
- drawBorder: false,
- color: 'rgba(235,237,242,1)',
- zeroLineColor: 'rgba(235,237,242,1)'
- }
- }],
- xAxes: [{
- gridLines: {
- display:false,
- drawBorder: false,
- color: 'rgba(0,0,0,1)',
- zeroLineColor: 'rgba(235,237,242,1)'
- },
- ticks: {
- padding: 20,
- fontColor: "#9c9fa6",
- autoSkip: true,
- },
- categoryPercentage: 0.5,
- barPercentage: 0.5
- }]
- }
- },
- elements: {
- point: {
- radius: 0
- }
- }
- })
- $("#visit-sale-chart-legend").html(myChart.generateLegend());
- }
- if ($("#traffic-chart").length) {
- var gradientStrokeBlue = ctx.createLinearGradient(0, 0, 0, 181);
- gradientStrokeBlue.addColorStop(0, 'rgba(54, 215, 232, 1)');
- gradientStrokeBlue.addColorStop(1, 'rgba(177, 148, 250, 1)');
- var gradientLegendBlue = 'linear-gradient(to right, rgba(54, 215, 232, 1), rgba(177, 148, 250, 1))';
- var gradientStrokeRed = ctx.createLinearGradient(0, 0, 0, 50);
- gradientStrokeRed.addColorStop(0, 'rgba(255, 191, 150, 1)');
- gradientStrokeRed.addColorStop(1, 'rgba(254, 112, 150, 1)');
- var gradientLegendRed = 'linear-gradient(to right, rgba(255, 191, 150, 1), rgba(254, 112, 150, 1))';
- var gradientStrokeGreen = ctx.createLinearGradient(0, 0, 0, 300);
- gradientStrokeGreen.addColorStop(0, 'rgba(6, 185, 157, 1)');
- gradientStrokeGreen.addColorStop(1, 'rgba(132, 217, 210, 1)');
- var gradientLegendGreen = 'linear-gradient(to right, rgba(6, 185, 157, 1), rgba(132, 217, 210, 1))';
- var trafficChartData = {
- datasets: [{
- data: [30, 30, 40],
- backgroundColor: [
- gradientStrokeBlue,
- gradientStrokeGreen,
- gradientStrokeRed
- ],
- hoverBackgroundColor: [
- gradientStrokeBlue,
- gradientStrokeGreen,
- gradientStrokeRed
- ],
- borderColor: [
- gradientStrokeBlue,
- gradientStrokeGreen,
- gradientStrokeRed
- ],
- legendColor: [
- gradientLegendBlue,
- gradientLegendGreen,
- gradientLegendRed
- ]
- }],
-
- // These labels appear in the legend and in the tooltips when hovering different arcs
- labels: [
- 'Search Engines',
- 'Direct Click',
- 'Bookmarks Click',
- ]
- };
- var trafficChartOptions = {
- responsive: true,
- animation: {
- animateScale: true,
- animateRotate: true
- },
- legend: false,
- legendCallback: function(chart) {
- var text = [];
- text.push('<ul>');
- for (var i = 0; i < trafficChartData.datasets[0].data.length; i++) {
- text.push('<li><span class="legend-dots" style="background:' +
- trafficChartData.datasets[0].legendColor[i] +
- '"></span>');
- if (trafficChartData.labels[i]) {
- text.push(trafficChartData.labels[i]);
- }
- text.push('<span class="float-right">'+trafficChartData.datasets[0].data[i]+"%"+'</span>')
- text.push('</li>');
- }
- text.push('</ul>');
- return text.join('');
- }
- };
- var trafficChartCanvas = $("#traffic-chart").get(0).getContext("2d");
- var trafficChart = new Chart(trafficChartCanvas, {
- type: 'doughnut',
- data: trafficChartData,
- options: trafficChartOptions
- });
- $("#traffic-chart-legend").html(trafficChart.generateLegend());
- }
- if ($("#inline-datepicker").length) {
- $('#inline-datepicker').datepicker({
- enableOnReadonly: true,
- todayHighlight: true,
- });
- }
- });
- })(jQuery);
|