Saiku Analytics Plugin 是否支持格式字符串上的 'Style' 属性?
Does Saiku Analytics Plugin support 'Style' Attributes on Format String?
我正在尝试使用 Saiku Analytics 对我的结果应用一些颜色格式,但没有成功。我尝试了一切,按照以下建议在 Schema 中应用格式。xml
http://forums.pentaho.com/showthread.php?173272-Changing-Color-of-measures
http://forums.pentaho.com/showthread.php?73935-Calculated-Member-Format-String
以及直接尝试在 Saiku Analytics 的计算成员菜单上应用自定义格式。
"The format string can even contain 'style' attributes which are interpreted specially by JPivot. If present, JPivot will render cells in color."
除此之外,我还没有找到任何证据表明 Saiku 也支持 'style'。有什么想法吗?
编辑:
听从这个 post 的建议
https://groups.google.com/a/saiku.meteorite.bi/forum/#!topic/user/Gb4AGqU87GY
我设法通过更改架构在我的字段上应用格式。
我的计算结果如下:
<CalculatedMember name="Exclude Appraiser Role 2 Average Score" dimension="Measures" formula="IIF(([Measures].[Appraiser Role 2 Count],[Appraisee].[Appraisee]) < 3,NULL,IIF([Measures].[Score_1] + [Measures].[Score_2] + [Measures].[Score_3] + [Measures].[Score_4] + [Measures].[Score_5] = 0,NULL,[Measures].[Total Question Score] / ([Measures].[Score_1] + [Measures].[Score_2] + [Measures].[Score_3] + [Measures].[Score_4] + [Measures].[Score_5])))">
<CalculatedMemberProperty name="FORMAT_STRING" expression="IIF([Measures].[Appraiser Role 2 Average Score] < 3, "|#,###.##|style=red" , "|#,###.##|style=green")"/>
</CalculatedMember>
我现在的问题是?我在哪里可以找到有关可用格式设置选项的完整文档(或至少更多示例)?
例如,我知道 'arrow' 和 'style' 属性,但它们所采用的值的完整列表是哪个?他们遵循哪种范式? Mondrian 文档指出格式字符串遵循 Visual Basic 格式,但这个提示根本没有用。
编辑 2:正如预期的那样,颜色为 HTML。关于箭头和其他可能的可用属性的问题仍然存在。
你可以阅读这个:http://jira.meteorite.bi/browse/SKU-1112
困难在于这种格式化必须由 Saiku(而不是 Mondrian)完成,因此它必须实现格式化子句的解释器,这不是一项简单的任务。
我正在尝试使用 Saiku Analytics 对我的结果应用一些颜色格式,但没有成功。我尝试了一切,按照以下建议在 Schema 中应用格式。xml
http://forums.pentaho.com/showthread.php?173272-Changing-Color-of-measures http://forums.pentaho.com/showthread.php?73935-Calculated-Member-Format-String
以及直接尝试在 Saiku Analytics 的计算成员菜单上应用自定义格式。
"The format string can even contain 'style' attributes which are interpreted specially by JPivot. If present, JPivot will render cells in color."
除此之外,我还没有找到任何证据表明 Saiku 也支持 'style'。有什么想法吗?
编辑:
听从这个 post 的建议 https://groups.google.com/a/saiku.meteorite.bi/forum/#!topic/user/Gb4AGqU87GY 我设法通过更改架构在我的字段上应用格式。
我的计算结果如下:
<CalculatedMember name="Exclude Appraiser Role 2 Average Score" dimension="Measures" formula="IIF(([Measures].[Appraiser Role 2 Count],[Appraisee].[Appraisee]) < 3,NULL,IIF([Measures].[Score_1] + [Measures].[Score_2] + [Measures].[Score_3] + [Measures].[Score_4] + [Measures].[Score_5] = 0,NULL,[Measures].[Total Question Score] / ([Measures].[Score_1] + [Measures].[Score_2] + [Measures].[Score_3] + [Measures].[Score_4] + [Measures].[Score_5])))">
<CalculatedMemberProperty name="FORMAT_STRING" expression="IIF([Measures].[Appraiser Role 2 Average Score] < 3, "|#,###.##|style=red" , "|#,###.##|style=green")"/>
</CalculatedMember>
我现在的问题是?我在哪里可以找到有关可用格式设置选项的完整文档(或至少更多示例)?
例如,我知道 'arrow' 和 'style' 属性,但它们所采用的值的完整列表是哪个?他们遵循哪种范式? Mondrian 文档指出格式字符串遵循 Visual Basic 格式,但这个提示根本没有用。
编辑 2:正如预期的那样,颜色为 HTML。关于箭头和其他可能的可用属性的问题仍然存在。
你可以阅读这个:http://jira.meteorite.bi/browse/SKU-1112
困难在于这种格式化必须由 Saiku(而不是 Mondrian)完成,因此它必须实现格式化子句的解释器,这不是一项简单的任务。