Skip to content

Chart

Charts can be added using

<?php

$categories = array('A', 'B', 'C', 'D', 'E');
$series = array(1, 3, 2, 5, 4);
$chart = $section->addChart('line', $categories, $series, $style);

For available styling options, see Styles > Chart.

Check out the Sample_32_Chart.php for more options and styling.