The following won't work in SQLLite as recursive queries are not supported, but it will work in Oracle.
You can create a continuous time series for Oracle dBs with a subquery like this:
(SELECT TRUNC (SYSDATE - x / 1440, 'MI') ts
FROM (SELECT LEVEL x
FROM DUAL
CONNECT BY LEVEL <= 60))
Then link that time series to your chart data using a LEFT JOIN like this:
SELECT TO_CHAR (A.TS, 'DD/MM/YYYY HH24:MI') TS
, b.DATAPOINT1, b.DATAPOINT2
FROM (SELECT TRUNC (SYSDATE - x / 1440, 'MI') ts
FROM (SELECT LEVEL x
FROM DUAL
CONNECT BY LEVEL <= 60)) a
, MY_CHART_DATA b
WHERE a.ts = b.ts(+) ORDER BY a.TS;
The example above will plot the last 60 minutes and will work** with DBIx::Chart. To change the resolution to hours change 'MI' to 'HH24', or for every 24 hours you can omit the date format parameter all together.
To change the range simply set the CONNECT BY LEVEL value to the number of time series points you need to plot at your specified resolution.
**Note: DBIx::Chart will barf if all datapoint values are zero (ie. undefined). Can't help you there, sorry.