Profile

Joana Carvalho

This individual is no longer active. Application functionality related to this individual is limited.

Contact Details

My Content

1 to 12 of 12 total
Posted By Joana Carvalho 08-07-2019 16:08
Found In Community: Pentaho
\ view thread
First you need to add the image that you want on the baseAxisLabel, then you control its visibility by using visible attribute. d.baseAxisLabel_add = function(event)( return new pv.Image() .width(30).height(30) // comment for stretch effect .fillStyle(#def) .visible(function(event)( var str = event. ...
Posted By Joana Carvalho 08-07-2019 13:49
Found In Community: Pentaho
\ view thread
Hi Andy, if you want to change dynamically the datasource, you just need to put on the Pre Exec the following code: function ()( var d = this; //Get query name var qry = getFirstPart(p_runcsv, | d.queryDefinition.dataSource = qry; ) qry needs to be the name of the query that is defined on the datasources ...
Posted By Joana Carvalho 08-16-2018 15:07
Found In Community: Pentaho
\ view thread
Hi Pierre, Could you show the catalina logs and provide PRD sample where the issue is happening? Thanks, Joana
Posted By Joana Carvalho 08-07-2018 17:58
Found In Community: Pentaho
\ view thread
Hi Sergey, Which Pentaho version are you using? We had that issue on versions before 8. In Pentaho8.0 that issue does not happen.
Posted By Joana Carvalho 04-17-2018 06:55
Found In Community: Pentaho
\ view thread
yes, the CFR was converted to require, both components and dashboards. So, it will only work on require dashboards.
Posted By Joana Carvalho 03-29-2018 18:16
Found In Community: Pentaho
\ view thread
Sorry, about the delay in my response, but yes, its up to date If you go to the marketplace, you should see the 18.03.14 Stable version of the CFR that is a require version.
Posted By Joana Carvalho 03-26-2018 10:10
Found In Community: Pentaho
\ view thread
Hi Dan, The CFR plugin was converted to require only a couple of weeks ago. It is available in Pentaho8.0 version. Which version are you using? Thanks, Joana
Posted By Joana Carvalho 03-20-2018 12:09
Found In Community: Pentaho
\ view thread
Hi David, The tiler provider, which corresponds to images that the map is made of, is responsible for defining the zoom levels available in the map. By default, the tiler provider used is openstreetmap and it has [0,19] zoom levels: https://wiki.openstreetmap.org/wiki/Zoom_levels However, in the new ...
Posted By Joana Carvalho 03-19-2018 08:36
Found In Community: Pentaho
\ view thread
Hi Ema, No, there is no standard radar chart in Pentaho 7.1. The link that I suggested it is a tutorial that explains, using the vizApi, how a d3 chart can be integrated and later on be used in a CDE dashboard. Please let me know if you have any doubts during the addition of the d3 radar chart using ...
Posted By Joana Carvalho 03-15-2018 17:22
Found In Community: Pentaho
\ view thread
Hi, you can use the VizApi that it is available in Pentaho 7.1 and Pentaho 8.0 and add d3 radar chart, for instance. The documentation explains, through an example, how you can add a d3 bar chart in your Pentaho: CDE dashboard, Analyser or even PDI.The documentation is here:  Step 1 - Preparing the environment ...
Posted By Joana Carvalho 03-15-2018 17:07
Found In Community: Pentaho
\ view thread
Hi Matheus, if I understood correctly, you want to capture the value of the slice clicked, right? If so, you should use the OOTB ccc charts click Action: clickAction and you need to set interactive to true. So in the PreExec of your template component, you should have something like:   function f()( ...
Posted By Joana Carvalho 03-15-2018 13:56
Found In Community: Pentaho
\ view thread
Hi David, try this - this.defaultZoomLevel = 2; in the PreExec of the NewMap. Then, you need to update the default zoom level according to what you want.