Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
Hi Hallie,
You can change the chartArea width to be smaller so that the legend has more space:
<?php
ColumnChart::create(array(
...
"options"=>array(
"chartArea"=>array(
"width"=>"60%",
)
)
));
?>
Or you can move the legend to another position "bottom"
or "top"
, there is more space there.
<?php
ColumnChart::create(array(
...
"options"=>array(
"legend"=>array(
"position"=>"bottom",
)
)
));
?>
Let us know if you need further assistance.
Regards,
KoolPHP Inc
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo