Topic: Adding new graph in dashboard

Any way to add graph in the dashboard via module and not modifying the core?

Re: Adding new graph in dashboard

@barbarian
Look at this discussion.

https://frontaccounting.com/punbb/viewtopic.php?id=7854

At post 63 @notrinos says:

notrinos wrote:

Awsome @joe

On this basis we can generate countless charts for unlimited number of different statistical needs

I have tried the changes on my local installation and its very nice..

Re: Adding new graph in dashboard

Thanks,

I will check on this.

rafat wrote:

@barbarian
Look at this discussion.

https://frontaccounting.com/punbb/viewtopic.php?id=7854

At post 63 @notrinos says:

notrinos wrote:

Awsome @joe

On this basis we can generate countless charts for unlimited number of different statistical needs

I have tried the changes on my local installation and its very nice..

Re: Adding new graph in dashboard

Hello. I am planning to commit the new dashboard and graphics engine class, that also includes the SVG vector graphics for the core. Much prettier graphics.

At first I was planning to wait until release 2.5, but while there are no database changes, we can as well commit it to a release 2.4.10. A release that could be done this or next week.

I will syncronize this with Janusz and let you know.

Joe

Re: Adding new graph in dashboard

We will also make the this release compatible with php 8.0.0 and 8.0.7.

The 2.4.10 will be released next week.

Joe

Re: Adding new graph in dashboard

@Joe thanks for the good work.
While you are at it ..can you please take a look at the below two strings in dashboard.inc

 $title = _("Last $weeks weeks Performance"); 

and

 $title = _("Last $months Months Performance"); 

Both strings are not translatable. I guess because of the inclusion of $ variables.
I have no clue how to get this to work.

Re: Adding new graph in dashboard

Yes I can use sprintf routine instead. I forgot to do that. Thanks.

Joe