我们正在为数据仓库选择BI堆栈.最有力的竞争者是OBIEE = Oracle BI企业版(以前称为Siebel Analytics)和Microstrategy.
有没有人和OBIEE合作过?得到教训?一般印象?缺点,优势?
我想使用任何Web测试工具测试Microstrategy应用程序.我发现seleniun很好地服务于我的目的.但微策略应用程序以闪存格式部署.请帮我指导如何测试这些闪存应用程序是否有可用的工具?我可以只使用硒吗?如何使用?提前致谢
我正在尝试使用可视化作为D3服装图表上的选择器.我正在关注SDK文档在这里,我不能让我的示例工作.
基本上我通过声明"me"var并启用"用作过滤器"选项来加注星标.
var me = this;
this.addUseAsFilterMenuItem();
Run Code Online (Sandbox Code Playgroud)
然后,当附加de svg元素时,我添加了clear和end selecion方法:
var g = d3.select(this.domNode).append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")")
.on("click", function(d) {
if (event.target.classList.contains('bar')) {
me.clearSelections();
me.endSelections();
return true;
} else {
return true;
}
});
Run Code Online (Sandbox Code Playgroud)
获取数据时,我使用hasSelection属性:
var data = this.dataInterface.getRawData(mstrmojo.models.template.DataInterface.ENUM_RAW_DATA_FORMAT.TREE, {
hasSelection: true
}).children;
Run Code Online (Sandbox Code Playgroud)
在我的栏上添加"applyselection"方法时:
g.selectAll(".bar")
.data(data)
.enter()
.append("rect")
.attr("class", "bar")
.attr("x", function(d) {
return x(d.name);
})
.attr("y", function(d) {
return …Run Code Online (Sandbox Code Playgroud)