DrillDown Package
Overview #
DrillDown is a powerful report type in data analysis. It allows your data to summarize in highest level then break down to smaller one. All level break-down data can be visualized in charts or tables for your better understanding of data.
This package contains 3 different widgets: DrillDown, CustomDrillDown and MultiView.
Note: We have another LegacyDrillDown which is the old version of DrlllDown. We have re-worked on the DrillDown to make it better and more flexible. So if you the old drilldown, please rename your DrillDown to LegacyDrillDown, everything will works as before.
Installation #
By downloading .zip file #
- Download zip file from My Licenses
- Unzip
- Copy the folder drilldownintokoolreportfolder, it will look like below:
koolreport
├── core
├── drilldown
By composer #
If you have purchased the package then you can follow these steps to install
- Login to koolreport.com
- Go to My Licenses
- Click Get Token For Composer button
- Copy the text and save to file auth.jsonnext tocomposer.json
- Add the repositories to composer.jsonlike below
- Run composer updateto install package
composer.json
{
    "repositories":[
      {"type":"composer","url":"https://repo.koolreport.com"}
    ],
    "require":{
        "koolreport/drilldown":"*",
        ...
    }
}
Your auth.json will look like this:
{
    "http-basic": {
        "repo.koolreport.com": {
            "username": "your@email.com",
            "password": "your-secret-token"
        }
    }
}
Note: Please add your auth.json to .gitignore as it contains your secret login information.
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.