buckaroo
buckaroo copied to clipboard
Add LineplotDisplayer
Checks
- [X] I have checked that this enhancement has not already been requested
How would you categorize this request. You can select multiple if not sure
Display (is this related to visual display of a value)
Enhancement Description
Add a lineplot similar to the histogram displayer. This will be based on recharts. https://recharts.org/en-US/api/LineChart
It will render embedded lists that look like
const data = [
{
"name": "Page A",
"uv": 4000,
"pv": 2400,
"amt": 2400
},
{
"name": "Page B",
"uv": 3000,
"pv": 1398,
"amt": 2210
}]```
### Pseudo Code Implementation
_No response_
### Prior Art
[Recharts line chart](https://recharts.org/en-US/api/LineChart)