passing in custom value to reference line is not working as expected
See original GitHub issueI 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>
);
}
Issue Analytics
- State:
- Created 5 years ago
- Reactions:6
- Comments:6
Top Results From Across the Web
Reference Lines, Bands, Distributions, and Boxes - Tableau
Tableau lets you add as many reference lines, bands, distributions, and box ... It is also useful when working with a calculation with...
Read more >Solved: Reference line - JMP User Community
I have 4000 histograms & each one of them have different reference value. ... I've got a similar problem, I have a graph...
Read more >Tableau Tip: Adding a moving reference line for “today” - VizWiz
Great tips! I'm using a zone graph and was wondering if there's a way to make the zone continue between the actual values...
Read more >Recharts custom label - Stack Overflow
Expected to see the 'Label' text over of all bars. Update For example, if I have a chart in which multiple lines are...
Read more >Einstein Analytics and Discovery Insights Specialist - Step 2
"Also, make it possible for the reference line value to filter by ... The problem vas the deploy model name this should follow...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, this my team’s work arounds.
extracted from original react-sparklines code.
the problem is 0 is just 0, not a SVG position.
Ran into the issue today. It seems the reference line defaults to max even when you specify a custom value.