I have a clickable bar chart. My click function is:
function (s,c,v){
try
{
alert(s + "," + c + "," + v);
Dashboards.fireChange('territory',c);
}
catch (e)
{
alert(e);
}
}
The problem is that the value of c is always 'undefined'
function (s,c,v){
try
{
alert(s + "," + c + "," + v);
Dashboards.fireChange('territory',c);
}
catch (e)
{
alert(e);
}
}
The problem is that the value of c is always 'undefined'