KoolReport's Forum

Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines

Report is not redered for the data of morethan 300 Records... #987

Open Sowmya opened this topic on on Jul 16, 2019 - 2 comments

Sowmya commented on Jul 16, 2019

Hi KoolReport team,

I am KoolReport Pro user.  After filtering my data I got around 300,500... records.

The graph only shows titles.... I don't want titles. I want graph only.... Please help me out this problem... This is very very urgent task for me. Please please help me.... Thank You..... Waiting for your reply...

KoolReport commented on Jul 16, 2019

Then you do not put the "title" property for the chart. Also if you want to turn off the legend, here is the code:

{Any Google Chart}::create(array(
    ...
    "options"=>array(
        "legend"=>array("position"=>"none")
    )
));
Sowmya commented on Jul 16, 2019

Thanks alot for your support, I got Graph by using this option.

"options"=>array(
        "legend"=>array("position"=>"none")

But how can I identify which color represent which item...... I want to display item name for each color representing

My Code

DonutChart::create(array(
        "title"=>"April Invoice",
        "dataSource"=>$this->dataStore('Apr_Sales'),
        "columns"=>array(
            "CustName",
            "InvoiceValue"=>array(
            "type"=>"number",
            "label"=>"InvoiceValue",
            "prefix"=>"₹"
          )
        ),
         "options"=>array(
            "title"=>"April Sales",
            "legend"=>array("position"=>"none")),
         "width"=>'100%'

Build Your Excellent Data Report

Let KoolReport help you to make great reports. It's free & open-source released under MIT license.

Download KoolReport View demo
help needed

None