Funnel Chart

A funnel chart is a data visualization tool that represents the progressive reduction of data as it moves through different stages of a process. Funnel charts assist with recognizing possible bottlenecks in the conversion process, highlight areas for improvement, and provide insights into the effectiveness of marketing or sales efforts at each stage.

Data Format #


The data format for the area chart is the same as for the other XY plots. You will need to provide the data in table format.

Basic Funnel Chart #


Creating a funnel chart is no different than creating a bar chart. As stated above, you only need to tweak a few configurations, rest everything stays same. Please

$data = [
    [
        'recruitment',
        'value'
    ],
    [
        "Sourced",
        1380
    ],
    [
        "Screened",
        1100
    ],
    ...
];
\koolreport\apexcharts\FunnelChart::create(array(
    "title" => "Recruitment Funnel",
    "dataSource" => $data,
    "columns" => $data[0],

funnel chart

Pyramid Chart #


To create a pyramid chart (which is technically an inversed funnel chart), you can just reverse the $data array in the above code and you will get a pyramid chart. No other changes required in the configuration.[

pyramid chart

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.