Packages

A simple Elixir charting library that generates easy-to-customize charts.

Current section

Files

Jump to
uncharted lib live_chart gradient.ex
Raw

lib/live_chart/gradient.ex

defmodule LiveChart.Gradient do
@moduledoc """
Definition of a gradient between colors
"""
@type t() :: %__MODULE__{
start_color: String.t(),
stop_color: String.t()
}
defstruct [:start_color, :stop_color]
end