有谁知道任何优秀的开源立方体浏览器?
理想情况下,它将使用普通的javascript构建.
它甚至存在吗?
我正计划将它与经典的asp再次使用一个SQL数据库.
您可以查看Pentaho Mondrian(包括JPivot)或Eclipse BIRT
有了这些,您可以在最流行的数据库上获得某种灵活的报告工具,它还包括浏览OLAP多维数据集的功能.
如果您正在寻找轻量级的东西,请尝试使用CubesViewer:
它主要是Javascript,由Cubes OLAP服务器支持.
(免责声明,我是主要的开发者:-))
查看js-hypercube以获取仅限javascript的OLAP库.API非常简单.您可以将json反序列化为多维数据集对象,查询维名称,对多维数据集进行切片以及对事实进行求和.从文档:
var data = [{"time":1331773202,"facts":{"name":"Super Mario Bros. 2","platform":"Nintendo","staring":"Mario"},"measures":{"rentals":73,"sales":9,"revenue":359.91}}, {"time":1331841602,"facts":{"name":"Metroid","platform":"Nintendo","staring":"Samus"},"measures":{"rentals":43,"sales":6,"revenue":239.94}}]; // ... etc var cube = ps.Cube.deserialize(data, ['rentals', 'sales', 'revenue']) console.info('Total Rentals', cube.sum().rentals); console.info('Revenue at 6pm for Super Nintendo games', '$' + cube.slice({hour: 18, platform: 'Super Nintendo'}).sum(2).revenue); console.info('Avg rentals per hour for games staring Mario', cube.slice({staring: 'Mario'}).avg(24, 2).rentals + ' units');
这是我使用它和backbone.js构建的一个例子:http://jsbin.com/rejekij/edit?html,js,output