dashboard2.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. /* global Chart:false */
  2. $(function () {
  3. 'use strict'
  4. /* ChartJS
  5. * -------
  6. * Here we will create a few charts using ChartJS
  7. */
  8. //-----------------------
  9. // - MONTHLY SALES CHART -
  10. //-----------------------
  11. // Get context with jQuery - using jQuery's .get() method.
  12. var salesChartCanvas = $('#salesChart').get(0).getContext('2d')
  13. var salesChartData = {
  14. labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
  15. datasets: [
  16. {
  17. label: 'Digital Goods',
  18. backgroundColor: 'rgba(60,141,188,0.9)',
  19. borderColor: 'rgba(60,141,188,0.8)',
  20. pointRadius: false,
  21. pointColor: '#3b8bba',
  22. pointStrokeColor: 'rgba(60,141,188,1)',
  23. pointHighlightFill: '#fff',
  24. pointHighlightStroke: 'rgba(60,141,188,1)',
  25. data: [28, 48, 40, 19, 86, 27, 90]
  26. },
  27. {
  28. label: 'Electronics',
  29. backgroundColor: 'rgba(210, 214, 222, 1)',
  30. borderColor: 'rgba(210, 214, 222, 1)',
  31. pointRadius: false,
  32. pointColor: 'rgba(210, 214, 222, 1)',
  33. pointStrokeColor: '#c1c7d1',
  34. pointHighlightFill: '#fff',
  35. pointHighlightStroke: 'rgba(220,220,220,1)',
  36. data: [65, 59, 80, 81, 56, 55, 40]
  37. }
  38. ]
  39. }
  40. var salesChartOptions = {
  41. maintainAspectRatio: false,
  42. responsive: true,
  43. legend: {
  44. display: false
  45. },
  46. scales: {
  47. xAxes: [{
  48. gridLines: {
  49. display: false
  50. }
  51. }],
  52. yAxes: [{
  53. gridLines: {
  54. display: false
  55. }
  56. }]
  57. }
  58. }
  59. // This will get the first returned node in the jQuery collection.
  60. // eslint-disable-next-line no-unused-vars
  61. var salesChart = new Chart(salesChartCanvas, {
  62. type: 'line',
  63. data: salesChartData,
  64. options: salesChartOptions
  65. }
  66. )
  67. //---------------------------
  68. // - END MONTHLY SALES CHART -
  69. //---------------------------
  70. //-------------
  71. // - PIE CHART -
  72. //-------------
  73. // Get context with jQuery - using jQuery's .get() method.
  74. var pieChartCanvas = $('#pieChart').get(0).getContext('2d')
  75. var pieData = {
  76. labels: [
  77. 'Chrome',
  78. 'IE',
  79. 'FireFox',
  80. 'Safari',
  81. 'Opera',
  82. 'Navigator'
  83. ],
  84. datasets: [
  85. {
  86. data: [700, 500, 400, 600, 300, 100],
  87. backgroundColor: ['#f56954', '#00a65a', '#f39c12', '#00c0ef', '#3c8dbc', '#d2d6de']
  88. }
  89. ]
  90. }
  91. var pieOptions = {
  92. legend: {
  93. display: false
  94. }
  95. }
  96. // Create pie or douhnut chart
  97. // You can switch between pie and douhnut using the method below.
  98. // eslint-disable-next-line no-unused-vars
  99. var pieChart = new Chart(pieChartCanvas, {
  100. type: 'doughnut',
  101. data: pieData,
  102. options: pieOptions
  103. })
  104. //-----------------
  105. // - END PIE CHART -
  106. //-----------------
  107. /* jVector Maps
  108. * ------------
  109. * Create a world map with markers
  110. */
  111. $('#world-map-markers').mapael({
  112. map: {
  113. name: 'usa_states',
  114. zoom: {
  115. enabled: true,
  116. maxLevel: 10
  117. }
  118. }
  119. })
  120. // $('#world-map-markers').vectorMap({
  121. // map : 'world_en',
  122. // normalizeFunction: 'polynomial',
  123. // hoverOpacity : 0.7,
  124. // hoverColor : false,
  125. // backgroundColor : 'transparent',
  126. // regionStyle : {
  127. // initial : {
  128. // fill : 'rgba(210, 214, 222, 1)',
  129. // 'fill-opacity' : 1,
  130. // stroke : 'none',
  131. // 'stroke-width' : 0,
  132. // 'stroke-opacity': 1
  133. // },
  134. // hover : {
  135. // 'fill-opacity': 0.7,
  136. // cursor : 'pointer'
  137. // },
  138. // selected : {
  139. // fill: 'yellow'
  140. // },
  141. // selectedHover: {}
  142. // },
  143. // markerStyle : {
  144. // initial: {
  145. // fill : '#00a65a',
  146. // stroke: '#111'
  147. // }
  148. // },
  149. // markers : [
  150. // {
  151. // latLng: [41.90, 12.45],
  152. // name : 'Vatican City'
  153. // },
  154. // {
  155. // latLng: [43.73, 7.41],
  156. // name : 'Monaco'
  157. // },
  158. // {
  159. // latLng: [-0.52, 166.93],
  160. // name : 'Nauru'
  161. // },
  162. // {
  163. // latLng: [-8.51, 179.21],
  164. // name : 'Tuvalu'
  165. // },
  166. // {
  167. // latLng: [43.93, 12.46],
  168. // name : 'San Marino'
  169. // },
  170. // {
  171. // latLng: [47.14, 9.52],
  172. // name : 'Liechtenstein'
  173. // },
  174. // {
  175. // latLng: [7.11, 171.06],
  176. // name : 'Marshall Islands'
  177. // },
  178. // {
  179. // latLng: [17.3, -62.73],
  180. // name : 'Saint Kitts and Nevis'
  181. // },
  182. // {
  183. // latLng: [3.2, 73.22],
  184. // name : 'Maldives'
  185. // },
  186. // {
  187. // latLng: [35.88, 14.5],
  188. // name : 'Malta'
  189. // },
  190. // {
  191. // latLng: [12.05, -61.75],
  192. // name : 'Grenada'
  193. // },
  194. // {
  195. // latLng: [13.16, -61.23],
  196. // name : 'Saint Vincent and the Grenadines'
  197. // },
  198. // {
  199. // latLng: [13.16, -59.55],
  200. // name : 'Barbados'
  201. // },
  202. // {
  203. // latLng: [17.11, -61.85],
  204. // name : 'Antigua and Barbuda'
  205. // },
  206. // {
  207. // latLng: [-4.61, 55.45],
  208. // name : 'Seychelles'
  209. // },
  210. // {
  211. // latLng: [7.35, 134.46],
  212. // name : 'Palau'
  213. // },
  214. // {
  215. // latLng: [42.5, 1.51],
  216. // name : 'Andorra'
  217. // },
  218. // {
  219. // latLng: [14.01, -60.98],
  220. // name : 'Saint Lucia'
  221. // },
  222. // {
  223. // latLng: [6.91, 158.18],
  224. // name : 'Federated States of Micronesia'
  225. // },
  226. // {
  227. // latLng: [1.3, 103.8],
  228. // name : 'Singapore'
  229. // },
  230. // {
  231. // latLng: [1.46, 173.03],
  232. // name : 'Kiribati'
  233. // },
  234. // {
  235. // latLng: [-21.13, -175.2],
  236. // name : 'Tonga'
  237. // },
  238. // {
  239. // latLng: [15.3, -61.38],
  240. // name : 'Dominica'
  241. // },
  242. // {
  243. // latLng: [-20.2, 57.5],
  244. // name : 'Mauritius'
  245. // },
  246. // {
  247. // latLng: [26.02, 50.55],
  248. // name : 'Bahrain'
  249. // },
  250. // {
  251. // latLng: [0.33, 6.73],
  252. // name : 'São Tomé and Príncipe'
  253. // }
  254. // ]
  255. // })
  256. })
  257. // lgtm [js/unused-local-variable]