Compare commits

..

3 Commits

Author SHA1 Message Date
8446f59740 can now scroll with wheel in graphs 2026-02-10 19:10:25 +11:00
3a04b8321c 3 x new BUGS 2026-02-10 19:10:02 +11:00
037a9c2d87 add scroll todo 2026-02-10 19:09:29 +11:00
2 changed files with 15 additions and 2 deletions

12
BUGS
View File

@@ -1,3 +1,15 @@
* when I delete a comp_set && it is the current compare_to, then need to reset compare_to to 'Nothing'
* with future bills - recalculate bills button blows away growth!
- BUT, I think just loading the bills page puts it back -- need to validate and fix if so
* with new vertical lay-out, the autosetting of the bill_type when I click add
bill no longer sets to the tab I am viewing
-- also keeps going back to Gas for some reason?
* can put in dumb dates - DO SOME INPUT VALIDATION, *sigh*
- e.g. 0026-02-19 for a Gas bill
* kayo bills are wrong in between normal bills * kayo bills are wrong in between normal bills
* added an electricity bill by accident for 2018, that kills lots :( * added an electricity bill by accident for 2018, that kills lots :(

View File

@@ -11,6 +11,7 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script> <script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/mouse-wheel-zoom.js"></script>
<script src="https://code.highcharts.com/modules/annotations.js"></script> <script src="https://code.highcharts.com/modules/annotations.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script> <script src="https://code.highcharts.com/modules/accessibility.js"></script>
<script src="https://code.highcharts.com/themes/adaptive.js"></script> <script src="https://code.highcharts.com/themes/adaptive.js"></script>
@@ -358,7 +359,7 @@
// Highcharts configuration // Highcharts configuration
Highcharts.chart('graph', { Highcharts.chart('graph', {
chart: { type: 'line' }, chart: { type: 'line', zooming: { type: 'x' } },
colors: [ 'orange' ], colors: [ 'orange' ],
title: { text: 'Savings Over Time' }, title: { text: 'Savings Over Time' },
xAxis: { xAxis: {
@@ -385,7 +386,7 @@
{% if COMP %} {% if COMP %}
// Highcharts configuration // Highcharts configuration
Highcharts.chart('graph-comp', { Highcharts.chart('graph-comp', {
chart: { type: 'line' }, chart: { type: 'line', zooming: { type: 'x' } },
colors: [ colors: [
'orange', // Custom color 1 'orange', // Custom color 1
'cyan', // Custom color 2 'cyan', // Custom color 2