The graph/chart that appears on the frontpage of the admin panel dashboard says "No Data Found" if an order or sale hasn't been placed in the time period selected. I want to display the chart no matter what, even if there are no orders.

What do I have to modify to do this? The code or just a template?

link|improve this question

feedback

1 Answer

Edit DOCROOT\app\design\adminhtml\default\default\template\dashboard\index.phtml and remove lines 115-125 :

<div class="entry-edit" style="border:1px solid #ccc;">
                <?php echo $this->getChildHtml('diagrams') ?>
                    <div id="diagram_tab_content"></div>
                <div style="margin:20px;">
                    <?php echo $this->getChildHtml('totals') ?>
                </div>
                <div style="margin:20px;">
                    <?php echo $this->getChildHtml('grids') ?>
                    <div id="grid_tab_content"></div>
                </div>
            </div>
link|improve this answer
could you be more specific? are they the lines that say "if $this->getCount()"? – omouse Dec 16 '10 at 12:24
I think you're looking in the wrong file. There is no $this->getCount() in the file I specified. What version of Magento are you using? – Jonathan Day Dec 16 '10 at 21:16
I'm using magento 1.4.1.1, are you using something newer or older? – omouse Dec 17 '10 at 4:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.