UNPKG
@graphique/geom-point
Version:
latest (3.0.0)
next (2.0.1)
3.0.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.1-next.6
2.0.0
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.1.0
0.1.0-alpha.0
0.0.7-alpha.63
0.0.6
0.0.5
0.0.4
0.0.3
0.0.3-alpha.0
0.0.2
0.0.2-alpha.1
0.0.2-alpha.0
0.0.1-alpha.9
0.0.1-alpha.8
0.0.1-alpha.7
0.0.1-alpha.6
0.0.1-alpha.5
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
For points, scatterplots, and bubbles
graphiquejs/graphique
@graphique/geom-point
/
src
/
types
/
index.ts
16 lines
(12 loc)
•
264 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Aes
,
DataValue
}
from
'@graphique/graphique'
export
enum
Entrance
{
DATA
=
'data'
,
BOTTOM
=
'bottom'
, }
export
enum
SizeLabelDirection
{ L =
'left'
, R =
'right'
, }
export
type
GeomAes
<
Datum
> =
Omit
<
Aes
<
Datum
>,
'x'
> & {
x
?:
DataValue
<
Datum
> }