Unfortunately, there is no built-in option to create a time chart. However, with some SQL knowledge it is possible to get in into your Lansweeper installation.
All charts are stored in tsysDBobjects in your Lansweeper database. Using the following query, you can view all the chart reports in the database.
Select * from tsysDBobjects
Where tsysDBobjects.DBobjName Like '%TimeChart%';
If you have a time chart that you want to add, you will have to use an insert script to insert the report into the database.
I recommend creating a backup of your Lansweeper installation before executing any scripts. Backup instructions can be found here: https://www.lansweeper.com/kb/94/backing-up-your-installation.htmlTo insert a report into Lansweeper you can run the following insert script after modifying the highlighted fields:
Insert into tsysDBobjects (DBobjName,Query, Comment, DisplayName, HDOverseerOnly)
Values ('web50reptimechartYourReportName','Report Query here', NULL,'Time Chart: Report Name Here',0)