Hello , i am using d3 funnel chart but when i ajax refresh with different values , the height goes for a toss.Is there a way to keep the height same as the right image irrespective of values. Right is the default height and left is the refreshed height: This is the option i am using:
\koolreport\d3\FunnelChart::create([
"dataSource"=>array(
array("category"=>"Total ICF Sent","amount"=>$feedback),
array("category"=>"Received","amount"=>$recieved)
),
"columns"=>[
"category",
"amount"
],
"chart"=>array(
"bottomWidth"=>0.4,
),
"clientEvents"=>array(
"itemSelect"=>"function(data){
console.log(data);
}"
)
],true);