Make bar graph ignore gaps

This commit is contained in:
shibao 2024-03-19 00:00:51 -04:00
parent 557a2cac3d
commit 96b05e8332
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,6 @@
# v0.9.8
- Make bar graph ignore empty days
# v0.9.7
- Fix margin on bottom of page
- Use bar graph instead of line graph

View File

@ -58,6 +58,9 @@ export default {
type: 'time',
time: {
unit: 'day'
},
ticks: {
source: 'data'
}
}
},

View File

@ -4,7 +4,7 @@ defmodule Cannery.MixProject do
def project do
[
app: :cannery,
version: "0.9.7",
version: "0.9.8",
elixir: "1.16.1",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,