admin_dashboard/static/js/plugins-init/datamap-usa-init.js

42 lines
1.2 KiB
JavaScript

(function($) {
"use strict"
var j = new Datamap( {
scope: "usa",
element: document.getElementById("australia"),
responsive: !0,
geographyConfig: {
popupOnHover: !1,
highlightOnHover: !1,
borderColor: "transparent",
borderWidth: 1,
highlightBorderWidth: 3,
highlightFillColor: "rgba(0,123,255,0.5)",
highlightBorderColor: "transparent",
borderWidth: 1
},
bubblesConfig: {
popupTemplate: function (e, j) {
return '<div class="datamap-sales-hover-tooltip">' + j.country + '<span class="m-l-5"></span>' + j.sold + "</div>"
},
borderWidth: 1,
highlightBorderWidth: 3,
highlightFillColor: "rgba(0,123,255,0.5)",
highlightBorderColor: "transparent",
fillOpacity: .75
},
fills: {
Visited: "#00A2FF",
neato: "#673AB7",
white: "#FF9800",
defaultFill: "#E7E8E9"
}
});
window.addEventListener("resize", function (e) {
j.resize()
});
})(jQuery)