Hi,
I have more than 2 columns in my datastore. 2 of them I use to render the waterfall chart. Is it possible to get access to others? For example, if my datastore is:
"dataSource" => [
["name" => "Product Revenue", "amount" => 420000, "type"=>'1'],
["name" => "Services Revenue", "amount" => 210000,"type"=>'2'],
["name" => "Fixed Costs", "amount" => -170000,"type"=>'3'],
["name" => "Variable Costs", "amount" => -140000, "type"=>'1']
],
And I use "name"
and "amount"
for my waterfall how can I show the corresponding "type"
value in the alert for example.
So I wish to use something like that
"clientEvents"=>array(
"itemSelect"=>"function(params){
alert( *** How to get access to the corresponding "type" value here? ***);
}"
Is it possible?
PS Why tooltips are not available for this type of chart?