I have a linear data set going from [1, ...6]. Passing in 1 as a value to the SparklinesReferenceLine I would expect the reference line to be at the bottom of my screenshot below, but no matter what value I pass in, it seems to want to just stay around the 4,5,6 range.
const data = [1,2,3,4,5,6];
export default (props) => {
return (
<Sparklines data={data}>
<SparklinesLine />
<SparklinesReferenceLine type='custom' value={1} />
</Sparklines>
);
}
