BarChart

Get started #

Creating D3's BarChart is very easy, very similar to other package chart like Google Chart or ChartJs. You will need to define a dataSource which chart will get data from and list of columns that you want to build chart. The first column should be category and the following columns contains data for each series.

Sample Code:

\koolreport\d3\BarChart::create(array(
    "title"=>"Sale Report",
    "dataSource"=>array(
        array("category"=>"Books","sale"=>32000,"cost"=>20000,"profit"=>12000),
        array("category"=>"Accessories","sale"=>43000,"cost"=>36000,"profit"=>7000),
        array("category"=>"Phones","sale"=>54000,"cost"=>39000,"profit"=>15000),
        array("category"=>"Movies","sale"=>23000,"cost"=>18000,"profit"=>5000),
        array("category"=>"Others","sale"=>12000,"cost"=>6000,"profit"=>6000),
    ),
    "columns"=>array(
        "category",
        "sale"=>array("label"=>"Sale","type"=>"number","prefix"=>"$"),
        "cost"=>array("label"=>"Cost","type"=>"number","prefix"=>"$"),
        "profit"=>array("label"=>"Profit","type"=>"number","prefix"=>"$"),
    )
));

Stacked Chart #

A stacked column chart is a column chart that places related values atop one another. If there are any negative values, they are stacked in reverse order below the chart's baseline. It's typically used when a category naturally divides into components.

You create a stacked column chart by setting the stacked option to true

<?php 
BarChart::create(array(
    ...
    "stacked"=>true
));
?>

Format yAxis #

You can format the number on yAxis with following settings

<?php 
BarChart::create(array(
    "yAxis"=>array(
        "decimals"=>2,
        "decPoint"=>".",
        "thousandSep"=>",",
        "prefix"=>"",
        "suffix"=>""
    )
));
?>

Dual yAxis chart #

D3's BarChart supports two y axis, to turn on you set dualAxis to true:

BarChart::create(array(
    ...
    "dualAxis"=>true
))

and then you can have settings for second y axis:

BarChart::create(array(
    ...
    "y2Axis"=>array(
        "decimals"=>2,
        "decPoint"=>".",
        "thousandSep"=>",",
        "prefix"=>"",
        "suffix"=>""
    )
))

Label format #

\koolreport\d3\BarChart::create(array(
    ...
    "columns"=>array(
        "category",
        "sale"=>array(
            "label"=>"Sale",
            "type"=>"number",
            "prefix"=>"$",
            "suffix"=>"",
            "decimals"=>2,
            "decPoint"=>".",
            "thousandSep"=>","
            "formatValue"=>function($value,$row)
            {
                return $value;
            }
        ),
        ...
    )
));

Above are all settings for columns, you may set the prefix, suffix or how to format number with decimals, decPoint and thousandSep. The formatValue can take a function in which you can have your own logic to format the value.

Legend #

You may hide, show and position the legend:

ColumnChart::create(array(
    ...
    "options"=>array(
        "legend"=>array(
            "position"=>"right", // Accept "bottom", "right", "inset"
            "show"=>true,
        )
    )
));

Extra options #

There are number of extended options that you may set under the "options" property of BarChart. For more options, please have a look at C3JS documentation.

BarChart::create(array(
    ...
    "options"=>array(
        ...
    )
))

Get started with KoolReport

KoolReport will help you to construct good php data report by gathering your data from multiple sources, transforming them into valuable insights, and finally visualizing them in stunning charts and graphs.