Hi everybody !
Here is my problem:
I have a pentaho CDE Dashboard made on Pentaho 4.5 containing a Piechart.
When clicking on the chart, a parameter is changed using the following code in the postChange of the Piechart :
It works well.
I made an other Dashboard using pentaho 4.8 containing an other PieChart and i wanted to implement the same thing but it fails,
the parameter is not changed, Firebug says :
It seems that this code is no more supported in 4.8, is ther an other way to do it using PostChange :confused:
Here is my problem:
I have a pentaho CDE Dashboard made on Pentaho 4.5 containing a Piechart.
When clicking on the chart, a parameter is changed using the following code in the postChange of the Piechart :
Code:
function(s, c, v) {
Dashboards.log("Click on " + s + ", " + c); //log in firebug
Dashboards.fireChange('param_zone', c); // changing parameter
}
I made an other Dashboard using pentaho 4.8 containing an other PieChart and i wanted to implement the same thing but it fails,
the parameter is not changed, Firebug says :
Code:
CDF: Click on null.null, undefined