Thank you! That got me must of the way there. I imported elm-plot like this:
import Plot as P
and when I try to modify P.defaultSeriesPlotCustomizations the compiler complains that it is expecting white space or a lower case word. The only thing I could figure to get around this was to pass the default settings to the function. In case someone find this useful the code would look like this:
import Plot as P
...
fixedRangePlot default minY maxY =
P.viewSeriesCustom
{ default
| toRangeLowest = always minY
, toRangeHighest = always maxY
}