我正在尝试创建已访问特定Tableau Dashboard的用户的概述。优选地,概述应显示用户的统计数据。国家/地区级别的活动,部门注册号码,区域以及访问过该帐户的个人用户ID。我有一个本地数据库的数据。但是,我在网上找不到任何简洁的解决方案。
答案 0 :(得分:0)
我认为您可以使用Tableau Server。
我正在向您发送链接function doResizeImgTag(){
var ifs = window.top.document.getElementsByTagName("iframe");//get all iframes
console.info(ifs);
for (var len = 0; len < ifs.length; len++) {
if (ifs[len].src == unescape(window.location.href)) { //get relevent iframe by checking current iframe name
var cliIframeHeight = ifs[len].clientHeight;//get iframe height
var cliIframeWidth = ifs[len].clientWidth; //get iframe width
var ratio_ = 0;
if (img.width > cliIframeWidth && img.height < cliIframeHeight) {
angular.element('#photo-id-eu').css('width', "100%");
}
else {
if (cliIframeHeight > cliIframeWidth) {
ratio_ = (cliHeight / img.height) * 100; //ratio calculation
$scope.$apply(function () {
angular.element('#photo-id-eu').css('height', ratio_ + "%");
});
}
else {
ratio_ = (cliIframeHeight / img.height) * 100;
$scope.$apply(function () {
angular.element('#photo-id-eu').css('width', ratio_ + "%");
});
}
}
}
}
}
。
您可以选择使用预先构建的管理视图或将其自定义。所有信息都应在右侧。
希望你觉得这很有用。
由于