iccube

iccube set filter selection from custom widget (JS)

梦想与她 提交于 2019-12-08 05:34:08
问题 Using icCube 5.0, I created a custom widget using google maps, on which I draw polygons representing zones. From the JS code of this widget, I was able to update the selected items of a tree filter containing these zones as well. So that, user could select the wanted zones either by the tree filter OR the Map. Each one updating the other. I was using the following code to do that : Chart.prototype.producedEvents = function () { return [vizEventType.onSelection]; }; self.fireEvent(vizEventType

Can you make the bubble size and color dependend on a MDX measure in icCube amChart widget?

心已入冬 提交于 2019-12-08 01:10:49
问题 I am trying to make a dynamic chart in icCube, in which bubbles are sized and colored in accordance with a specific data field in the MDX result set. Example MDX result set: (the x/y coordinates have been removed for the sake of simplicity): amount color bullet size Swiss 100 #0000FF 10 Spain 120 #FF0000 12 NL 70 #00FF00 7 I do not know how to do this now in the amChart widget in icCube, but I know it is possible to do this in amCharts itself. You can set for example the following attributes

porting multidimensional SSAS to ICCube. Scope() equivalent? other gaps/issues?

走远了吗. 提交于 2019-12-07 13:57:49
问题 Has anybody ever ported a complex ssas multidmensional cube to iccube? and have any advice to offer on lessons learnt/gaps between the two tools etc? The major one i can see is scope(). What's the equivalent in iccube? nested if/case statements? I have a list here. Anything else? function | SSAS | iccube ------------------------|------------------------|------------------------ multi threaded calcs | no | yes ------------------------|------------------------|------------------------ fix/scope

iccube set filter selection from custom widget (JS)

穿精又带淫゛_ 提交于 2019-12-06 14:49:24
Using icCube 5.0, I created a custom widget using google maps, on which I draw polygons representing zones. From the JS code of this widget, I was able to update the selected items of a tree filter containing these zones as well. So that, user could select the wanted zones either by the tree filter OR the Map. Each one updating the other. I was using the following code to do that : Chart.prototype.producedEvents = function () { return [vizEventType.onSelection]; }; self.fireEvent(vizEventType.onSelection, new viz.SetSelectionEvent(SelectedZones)); I upgraded to version 5.1.6, this is not

Can you make the bubble size and color dependend on a MDX measure in icCube amChart widget?

馋奶兔 提交于 2019-12-06 13:33:54
I am trying to make a dynamic chart in icCube, in which bubbles are sized and colored in accordance with a specific data field in the MDX result set. Example MDX result set: (the x/y coordinates have been removed for the sake of simplicity): amount color bullet size Swiss 100 #0000FF 10 Spain 120 #FF0000 12 NL 70 #00FF00 7 I do not know how to do this now in the amChart widget in icCube, but I know it is possible to do this in amCharts itself. You can set for example the following attributes in the amCharts editor: Alpha field, Bullet field, Bullet size field, Description field, Fill colors

porting multidimensional SSAS to ICCube. Scope() equivalent? other gaps/issues?

好久不见. 提交于 2019-12-06 03:55:02
Has anybody ever ported a complex ssas multidmensional cube to iccube? and have any advice to offer on lessons learnt/gaps between the two tools etc? The major one i can see is scope(). What's the equivalent in iccube? nested if/case statements? I have a list here. Anything else? function | SSAS | iccube ------------------------|------------------------|------------------------ multi threaded calcs | no | yes ------------------------|------------------------|------------------------ fix/scope block code | SCOPE() | ?? ------------------------|------------------------|------------------------

XMLA/SOAP command from a bash shell

孤人 提交于 2019-12-04 05:16:19
问题 I need to call the management API from icCube from withing a bash shell. What is the easiest way for sending a SOAP command like : <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Execute xmlns="urn:schemas-microsoft-com:xml-analysis"> <Command> <Statement xsi

icCube - How to do Authentication for icCube using an Apache web server

佐手、 提交于 2019-12-02 07:06:41
I am currently in the process of writing a WebApp to access reports from our ICCube-System. The Application page is hosted on a server different to the IcCube-server. The server is currently a local Apache server (xampp) using Basic Auth to authenticate users before they can access my htdocs. I would like my Apache to do the authentication while icCube's internal authorization manages report access, with only a single login being required. My application is based on the live demo for web reporting provided by IcCube; therefore it's using explicit JavaScript authentication (it's getting the

XMLA/SOAP command from a bash shell

℡╲_俬逩灬. 提交于 2019-12-02 03:45:27
I need to call the management API from icCube from withing a bash shell. What is the easiest way for sending a SOAP command like : <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Execute xmlns="urn:schemas-microsoft-com:xml-analysis"> <Command> <Statement xsi:type="xsd:string">'"$command"'</Statement> </Command> </Execute> </soap:Body> </soap:Envelope> On top,

MongoDB - The argument to $size must be an Array, but was of type: EOO / missing

北战南征 提交于 2019-11-26 05:32:06
问题 Trying to create a MongoDB data source with icCube. The idea is to return the size of an array as a new field. Something like : $project: { \"people\": 1, \"Count myFieldArray\" : {$size : \"$myFieldArray\" } } But I\'m getting for some records the following error : The argument to $size must be an Array, but was of type: EOO Is there a way that size is 0 if the field is empty or not an array (getting rid of the error) ? 回答1: You can use the $ifNull operator here. It seems the field is either