Kendo ui KendoPivot和Mondrian XML/A服务器

Kendo ui KendoPivot和Mondrian XML/A服务器,kendo-ui,mondrian,Kendo Ui,Mondrian,我想知道是否有人实现了对XML/A服务器实例的访问。理论上,这应该是可行的,但我想知道是否存在兼容性问题。我测试了KendoPivot和Mondrian,效果很好。您需要考虑的是,必须命名层次结构,如果不命名,则将采用默认名称(维度名称)。例如,您需要包括name=“theStore”: ..... ..... <Dimension name="Store"> <Hierarchy hasAll="true" primaryKey="store_id" name="th

我想知道是否有人实现了对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"/>
    .....
    .....