Packages

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

Current section

Files

Jump to
uncharted lib live_chart column_chart column.ex
Raw

lib/live_chart/column_chart/column.ex

defmodule LiveChart.ColumnChart.Column do
@moduledoc """
A struct representing column-level display properties.
"""
defstruct [:width, :offset, :label, :bar_width, :bar_offset, :column_height, :fill_color]
@type t() :: %__MODULE__{
width: Float.t(),
offset: Float.t(),
label: String.t(),
bar_width: Float.t(),
bar_offset: Float.t(),
column_height: Float.t(),
fill_color: atom()
}
end