KendoPivot 和 Mondrian XML/A 服务器

KendoPivot and Mondrian XML/A server

我想知道是否有人将 KendoPivot accessing an instance of Mondrian 实现为 XML/A 服务器。理论上这应该可行,但我想知道是否存在任何兼容性问题。

我测试了 KendoPivot 和 Mondrian,效果很好。你需要考虑的是你必须命名你的层次结构,如果你不这样做,它将采用默认名称(维度名称)。例如,您需要包括 name="theStore":

<Dimension name="Store">
  <Hierarchy hasAll="true" primaryKey="store_id" name="theStore">
    <Table name="store"/>
    <Level name="Store Country" column="store_country" uniqueMembers="true"/>
    <Level name="Store State" column="store_state" uniqueMembers="true"/>
    .....
    .....