UNPKG
@graphique/geom-vline
Version:
latest (2.0.0)
next (1.0.1)
2.0.0
1.2.1
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.1-next.6
1.0.0
0.4.2
0.4.1
0.4.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.0.3
0.0.2
0.0.1
For drawing vertical lines (usually used as markers)
graphiquejs/graphique
@graphique/geom-vline
/
src
/
__tests__
/
__data__
/
aaplMarketcap.ts
8 lines
(6 loc)
•
189 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ stocks }
from
'@graphique/datasets'
const
aaplMarketcap = stocks.
filter
(
(
d
) =>
( d.
symbol
===
'AAPL'
&&
new
Date
(d.
date
) >=
new
Date
(
'2019-07-01'
) ))
export
{ aaplMarketcap }