我正在使用Pentaho的社区仪表板编辑器。我正在使用条形图。
我需要根据结果集动态分配y轴的固定值。
在执行前:
function(){
this.chartDefinition.orthoFixedMax = 10;
}
但结果集仅显示在post execution.
中
如何动态设置y轴的固定值?
答案 0 :(得分:1)
使用了帖子提取:
function() {
var abc = render_LeadTimeLine.query.lastResults().resultset;
//check result set & use
this.chartDefinition.orthoFixedMax = 10;
}