This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module LineChart exposing (main) | |
{-| This module shows how to build a simple line and area chart using some of | |
the primitives provided in this library. | |
-} | |
import Date exposing (Date) | |
import Svg exposing (..) | |
import Svg.Attributes exposing (..) | |
import Visualization.Axis as Axis exposing (defaultOptions) |