Skip to content

Commit

Permalink
Adjust chart colors
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Jun 10, 2018
1 parent cb7b94e commit b152063
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Charts.elm
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module Charts exposing (temperatureChart)

import Color
import Date exposing (toTime)
import Html exposing (Html)
import LineChart
Expand Down Expand Up @@ -91,9 +90,9 @@ temperatureChart now measurements =
, legends = Legends.none
, events = Events.default
, junk = Junk.default
, grid = Grid.default
, grid = Grid.lines 0.5 Colors.grayLight
, area = Area.default
, line = Line.wider 2
, dots = Dots.custom (Dots.full 0)
}
[ LineChart.line Color.red Dots.circle "Foo" measurements ]
[ LineChart.line Colors.blue Dots.circle "Temperature" measurements ]

0 comments on commit b152063

Please sign in to comment.