LiveChart.Axes.MagnitudeAxis (uncharted v0.1.0) View Source

Exposes a struct representing configuration for the y axis of a LiveChart.

Link to this section Summary

Link to this section Types

Specs

grid_lines_func() :: ({min(), max()}, step() -> [Float.t()])

Specs

max() :: number()

Specs

min() :: number()

Specs

step() :: integer()

Specs

t() :: %LiveChart.Axes.MagnitudeAxis{
  grid_lines: grid_lines_func(),
  label: String.t() | nil,
  max: number(),
  min: number(),
  step: integer()
}

Link to this section Functions

Link to this function

default_grid_lines_fun(arg, step)

View Source