svelteplot 0.10.3 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Mark.svelte +42 -25
- package/dist/Mark.svelte.d.ts +111 -32
- package/dist/Plot.svelte +21 -15
- package/dist/core/Facet.svelte +1 -1
- package/dist/core/FacetAxes.svelte +13 -8
- package/dist/core/FacetGrid.svelte +4 -4
- package/dist/core/Plot.svelte +41 -35
- package/dist/helpers/autoScales.d.ts +3 -3
- package/dist/helpers/autoScales.js +28 -18
- package/dist/helpers/autoTicks.js +2 -0
- package/dist/helpers/callWithProps.d.ts +1 -2
- package/dist/helpers/facets.js +0 -1
- package/dist/helpers/index.js +1 -1
- package/dist/helpers/mergeDeep.d.ts +1 -3
- package/dist/helpers/mergeDeep.js +15 -16
- package/dist/helpers/projection.d.ts +4 -3
- package/dist/helpers/projection.js +17 -5
- package/dist/helpers/reduce.d.ts +4 -4
- package/dist/helpers/reduce.js +6 -4
- package/dist/helpers/regressionLoess.js +2 -1
- package/dist/helpers/resolve.d.ts +6 -3
- package/dist/helpers/resolve.js +25 -16
- package/dist/helpers/scales.d.ts +10 -10
- package/dist/helpers/scales.js +43 -13
- package/dist/helpers/time.d.ts +10 -3
- package/dist/helpers/time.js +2 -1
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/plotDefaults.d.ts +3 -1
- package/dist/hooks/plotDefaults.js +33 -1
- package/dist/hooks/usePlot.svelte.d.ts +10 -25
- package/dist/hooks/usePlot.svelte.js +8 -7
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -3
- package/dist/marks/Area.svelte +24 -13
- package/dist/marks/Area.svelte.d.ts +118 -34
- package/dist/marks/AreaX.svelte +42 -8
- package/dist/marks/AreaX.svelte.d.ts +154 -71
- package/dist/marks/AreaY.svelte +42 -8
- package/dist/marks/AreaY.svelte.d.ts +154 -71
- package/dist/marks/Arrow.svelte +42 -23
- package/dist/marks/Arrow.svelte.d.ts +114 -35
- package/dist/marks/AxisX.svelte +43 -28
- package/dist/marks/AxisX.svelte.d.ts +125 -40
- package/dist/marks/AxisY.svelte +43 -26
- package/dist/marks/AxisY.svelte.d.ts +127 -40
- package/dist/marks/BarX.svelte +12 -10
- package/dist/marks/BarX.svelte.d.ts +104 -32
- package/dist/marks/BarY.svelte +11 -10
- package/dist/marks/BarY.svelte.d.ts +106 -34
- package/dist/marks/BollingerX.svelte +4 -7
- package/dist/marks/BollingerX.svelte.d.ts +105 -30
- package/dist/marks/BollingerY.svelte +3 -0
- package/dist/marks/BollingerY.svelte.d.ts +105 -30
- package/dist/marks/BoxX.svelte +3 -3
- package/dist/marks/BoxY.svelte +12 -9
- package/dist/marks/BoxY.svelte.d.ts +128 -53
- package/dist/marks/Brush.svelte +26 -21
- package/dist/marks/Brush.svelte.d.ts +119 -60
- package/dist/marks/Cell.svelte +13 -9
- package/dist/marks/Cell.svelte.d.ts +105 -30
- package/dist/marks/CellX.svelte +2 -1
- package/dist/marks/CellX.svelte.d.ts +105 -32
- package/dist/marks/CellY.svelte +2 -1
- package/dist/marks/CellY.svelte.d.ts +105 -32
- package/dist/marks/ColorLegend.svelte +24 -13
- package/dist/marks/ColorLegend.svelte.d.ts +1 -0
- package/dist/marks/CustomMark.svelte +16 -10
- package/dist/marks/CustomMark.svelte.d.ts +112 -31
- package/dist/marks/CustomMarkHTML.svelte +8 -2
- package/dist/marks/CustomMarkHTML.svelte.d.ts +8 -2
- package/dist/marks/DifferenceY.svelte +31 -20
- package/dist/marks/DifferenceY.svelte.d.ts +134 -55
- package/dist/marks/Dot.svelte +21 -11
- package/dist/marks/Dot.svelte.d.ts +117 -38
- package/dist/marks/DotX.svelte +2 -0
- package/dist/marks/DotX.svelte.d.ts +136 -62
- package/dist/marks/DotY.svelte +1 -0
- package/dist/marks/DotY.svelte.d.ts +135 -62
- package/dist/marks/Frame.svelte +47 -9
- package/dist/marks/Frame.svelte.d.ts +124 -41
- package/dist/marks/Geo.svelte +21 -12
- package/dist/marks/Geo.svelte.d.ts +105 -30
- package/dist/marks/Graticule.svelte +3 -0
- package/dist/marks/Graticule.svelte.d.ts +3 -0
- package/dist/marks/GridX.svelte +31 -16
- package/dist/marks/GridX.svelte.d.ts +108 -32
- package/dist/marks/GridY.svelte +30 -15
- package/dist/marks/GridY.svelte.d.ts +108 -32
- package/dist/marks/HTMLTooltip.svelte +14 -7
- package/dist/marks/HTMLTooltip.svelte.d.ts +7 -0
- package/dist/marks/Image.svelte +50 -25
- package/dist/marks/Image.svelte.d.ts +117 -35
- package/dist/marks/Line.svelte +67 -44
- package/dist/marks/Line.svelte.d.ts +119 -30
- package/dist/marks/LineX.svelte +2 -1
- package/dist/marks/LineX.svelte.d.ts +142 -69
- package/dist/marks/LineY.svelte +2 -1
- package/dist/marks/LineY.svelte.d.ts +142 -69
- package/dist/marks/Link.svelte +70 -46
- package/dist/marks/Link.svelte.d.ts +126 -41
- package/dist/marks/Pointer.svelte +24 -15
- package/dist/marks/Pointer.svelte.d.ts +7 -0
- package/dist/marks/Rect.svelte +13 -5
- package/dist/marks/Rect.svelte.d.ts +116 -35
- package/dist/marks/RectX.svelte +6 -3
- package/dist/marks/RectX.svelte.d.ts +158 -12
- package/dist/marks/RectY.svelte +6 -3
- package/dist/marks/RectY.svelte.d.ts +158 -12
- package/dist/marks/RegressionX.svelte +13 -6
- package/dist/marks/RegressionX.svelte.d.ts +8 -3
- package/dist/marks/RegressionY.svelte +13 -6
- package/dist/marks/RegressionY.svelte.d.ts +8 -3
- package/dist/marks/RuleX.svelte +18 -11
- package/dist/marks/RuleX.svelte.d.ts +112 -32
- package/dist/marks/RuleY.svelte +19 -12
- package/dist/marks/RuleY.svelte.d.ts +114 -34
- package/dist/marks/Spike.svelte +11 -5
- package/dist/marks/Spike.svelte.d.ts +146 -68
- package/dist/marks/Text.svelte +24 -7
- package/dist/marks/Text.svelte.d.ts +253 -75
- package/dist/marks/TickX.svelte +56 -48
- package/dist/marks/TickX.svelte.d.ts +114 -40
- package/dist/marks/TickY.svelte +59 -51
- package/dist/marks/TickY.svelte.d.ts +117 -43
- package/dist/marks/Trail.svelte +25 -13
- package/dist/marks/Trail.svelte.d.ts +116 -33
- package/dist/marks/Vector.svelte +20 -11
- package/dist/marks/Vector.svelte.d.ts +116 -35
- package/dist/marks/WaffleX.svelte +18 -16
- package/dist/marks/WaffleX.svelte.d.ts +131 -57
- package/dist/marks/WaffleY.svelte +16 -15
- package/dist/marks/WaffleY.svelte.d.ts +129 -56
- package/dist/marks/helpers/Anchor.svelte +17 -2
- package/dist/marks/helpers/Anchor.svelte.d.ts +16 -1
- package/dist/marks/helpers/AreaCanvas.svelte +8 -8
- package/dist/marks/helpers/BaseAxisX.svelte +38 -41
- package/dist/marks/helpers/BaseAxisX.svelte.d.ts +11 -17
- package/dist/marks/helpers/BaseAxisY.svelte +35 -35
- package/dist/marks/helpers/BaseAxisY.svelte.d.ts +12 -15
- package/dist/marks/helpers/Box.svelte +35 -28
- package/dist/marks/helpers/Box.svelte.d.ts +122 -50
- package/dist/marks/helpers/DotCanvas.svelte +11 -9
- package/dist/marks/helpers/GeoCanvas.svelte +7 -6
- package/dist/marks/helpers/LineCanvas.svelte +7 -7
- package/dist/marks/helpers/LinearGradientX.svelte +2 -2
- package/dist/marks/helpers/LinearGradientX.svelte.d.ts +1 -1
- package/dist/marks/helpers/LinearGradientY.svelte +2 -2
- package/dist/marks/helpers/LinearGradientY.svelte.d.ts +1 -1
- package/dist/marks/helpers/Marker.svelte +2 -2
- package/dist/marks/helpers/MarkerPath.svelte +15 -12
- package/dist/marks/helpers/MarkerPath.svelte.d.ts +105 -32
- package/dist/marks/helpers/MultilineText.svelte +24 -17
- package/dist/marks/helpers/MultilineText.svelte.d.ts +1 -1
- package/dist/marks/helpers/RectCanvas.svelte +31 -26
- package/dist/marks/helpers/RectPath.svelte +2 -2
- package/dist/marks/helpers/Regression.svelte +176 -86
- package/dist/marks/helpers/Regression.svelte.d.ts +20 -8
- package/dist/marks/helpers/RuleCanvas.svelte +9 -6
- package/dist/marks/helpers/TextCanvas.svelte +13 -9
- package/dist/marks/helpers/TextCanvas.svelte.d.ts +6 -6
- package/dist/marks/helpers/TickCanvas.svelte +6 -5
- package/dist/marks/helpers/TrailCanvas.svelte +16 -18
- package/dist/marks/helpers/TrailCanvas.svelte.d.ts +3 -5
- package/dist/marks/helpers/canvas.js +16 -9
- package/dist/marks/helpers/events.d.ts +2 -2
- package/dist/marks/helpers/events.js +14 -7
- package/dist/marks/helpers/waffle.d.ts +3 -3
- package/dist/marks/helpers/waffle.js +6 -4
- package/dist/regression/polynomial.d.ts +1 -1
- package/dist/regression/polynomial.js +5 -5
- package/dist/regression/utils/determination.d.ts +1 -1
- package/dist/regression/utils/determination.js +1 -1
- package/dist/regression/utils/geometry.d.ts +1 -1
- package/dist/regression/utils/interpose.d.ts +1 -1
- package/dist/regression/utils/interpose.js +1 -1
- package/dist/regression/utils/points.d.ts +1 -1
- package/dist/transforms/bin.d.ts +3 -3
- package/dist/transforms/bin.js +29 -20
- package/dist/transforms/bollinger.d.ts +8 -0
- package/dist/transforms/bollinger.js +9 -1
- package/dist/transforms/centroid.d.ts +4 -0
- package/dist/transforms/centroid.js +4 -0
- package/dist/transforms/density.d.ts +4 -4
- package/dist/transforms/density.js +20 -13
- package/dist/transforms/dodge.d.ts +12 -1
- package/dist/transforms/dodge.js +15 -6
- package/dist/transforms/group.d.ts +141 -4
- package/dist/transforms/group.js +4 -1
- package/dist/transforms/interval.d.ts +204 -60
- package/dist/transforms/jitter.d.ts +421 -4
- package/dist/transforms/jitter.js +10 -1
- package/dist/transforms/map.d.ts +412 -4
- package/dist/transforms/map.js +3 -3
- package/dist/transforms/normalize.d.ts +276 -5
- package/dist/transforms/normalize.js +5 -3
- package/dist/transforms/recordize.d.ts +17 -5
- package/dist/transforms/recordize.js +13 -9
- package/dist/transforms/rename.d.ts +11 -4
- package/dist/transforms/rename.js +7 -2
- package/dist/transforms/select.d.ts +722 -210
- package/dist/transforms/select.js +13 -1
- package/dist/transforms/shift.d.ts +8 -0
- package/dist/transforms/shift.js +20 -6
- package/dist/transforms/sort.d.ts +13 -258
- package/dist/transforms/sort.js +13 -10
- package/dist/transforms/stack.d.ts +58 -9
- package/dist/transforms/stack.js +27 -11
- package/dist/transforms/window.d.ts +221 -66
- package/dist/transforms/window.js +8 -2
- package/dist/types/axes.d.ts +43 -0
- package/dist/types/axes.js +1 -0
- package/dist/types/channel.d.ts +30 -2
- package/dist/types/data.d.ts +14 -1
- package/dist/types/facet.d.ts +5 -0
- package/dist/types/index.d.ts +33 -8
- package/dist/types/index.js +11 -7
- package/dist/types/mark.d.ts +124 -35
- package/dist/types/plot.d.ts +118 -16
- package/dist/types/scale.d.ts +125 -8
- package/package.json +178 -175
- package/dist/helpers/autoTicks.d.ts +0 -12
|
@@ -5,6 +5,10 @@ type AtLeastOne<T, U = {
|
|
|
5
5
|
type SelectOptions = 'first' | 'last' | AtLeastOne<{
|
|
6
6
|
[k in ChannelName]: 'min' | 'max';
|
|
7
7
|
}>;
|
|
8
|
+
/**
|
|
9
|
+
* selects one datum per group based on the given criteria; use "first"/"last"
|
|
10
|
+
* for positional selection, or `{channel: "min"/"max"}` for value-based selection
|
|
11
|
+
*/
|
|
8
12
|
export declare function select({ data, ...channels }: TransformArg<DataRecord>, options: SelectOptions): {
|
|
9
13
|
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
10
14
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
@@ -16,6 +20,16 @@ export declare function select({ data, ...channels }: TransformArg<DataRecord>,
|
|
|
16
20
|
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
17
21
|
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
18
22
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
23
|
+
fontFamily?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontFamily, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
24
|
+
fontSize?: import("../types/index.js").ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "math" | (string & {}) | "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
25
|
+
fontStyle?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontStyle, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
26
|
+
fontVariant?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontVariant, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
27
|
+
fontWeight?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontWeight, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
28
|
+
letterSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.LetterSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
29
|
+
wordSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.WordSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
30
|
+
textAnchor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextAnchor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
31
|
+
textTransform?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextTransform, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
32
|
+
textDecoration?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextDecoration<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
19
33
|
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
20
34
|
channel: string;
|
|
21
35
|
order?: "ascending" | "descending";
|
|
@@ -29,45 +43,107 @@ export declare function select({ data, ...channels }: TransformArg<DataRecord>,
|
|
|
29
43
|
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
30
44
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
31
45
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
46
|
+
blend?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
32
47
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
33
48
|
clipPath?: string | undefined;
|
|
34
49
|
mask?: string | undefined;
|
|
35
50
|
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
36
51
|
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
37
52
|
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
38
|
-
onclick?:
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
53
|
+
onclick?: ((event: Event & {
|
|
54
|
+
currentTarget: SVGPathElement;
|
|
55
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
56
|
+
ondblclick?: ((event: Event & {
|
|
57
|
+
currentTarget: SVGPathElement;
|
|
58
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
59
|
+
onmouseup?: ((event: Event & {
|
|
60
|
+
currentTarget: SVGPathElement;
|
|
61
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
62
|
+
onmousedown?: ((event: Event & {
|
|
63
|
+
currentTarget: SVGPathElement;
|
|
64
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
65
|
+
onmouseenter?: ((event: Event & {
|
|
66
|
+
currentTarget: SVGPathElement;
|
|
67
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
68
|
+
onmousemove?: ((event: Event & {
|
|
69
|
+
currentTarget: SVGPathElement;
|
|
70
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
71
|
+
onmouseleave?: ((event: Event & {
|
|
72
|
+
currentTarget: SVGPathElement;
|
|
73
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
74
|
+
onmouseout?: ((event: Event & {
|
|
75
|
+
currentTarget: SVGPathElement;
|
|
76
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
77
|
+
onmouseover?: ((event: Event & {
|
|
78
|
+
currentTarget: SVGPathElement;
|
|
79
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
80
|
+
onpointercancel?: ((event: Event & {
|
|
81
|
+
currentTarget: SVGPathElement;
|
|
82
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
83
|
+
onpointerdown?: ((event: Event & {
|
|
84
|
+
currentTarget: SVGPathElement;
|
|
85
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
86
|
+
onpointerup?: ((event: Event & {
|
|
87
|
+
currentTarget: SVGPathElement;
|
|
88
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
89
|
+
onpointerenter?: ((event: Event & {
|
|
90
|
+
currentTarget: SVGPathElement;
|
|
91
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
92
|
+
onpointerleave?: ((event: Event & {
|
|
93
|
+
currentTarget: SVGPathElement;
|
|
94
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
95
|
+
onpointermove?: ((event: Event & {
|
|
96
|
+
currentTarget: SVGPathElement;
|
|
97
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
98
|
+
onpointerover?: ((event: Event & {
|
|
99
|
+
currentTarget: SVGPathElement;
|
|
100
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
101
|
+
onpointerout?: ((event: Event & {
|
|
102
|
+
currentTarget: SVGPathElement;
|
|
103
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
104
|
+
ondrag?: ((event: Event & {
|
|
105
|
+
currentTarget: SVGPathElement;
|
|
106
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
107
|
+
ondrop?: ((event: Event & {
|
|
108
|
+
currentTarget: SVGPathElement;
|
|
109
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
110
|
+
ondragstart?: ((event: Event & {
|
|
111
|
+
currentTarget: SVGPathElement;
|
|
112
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
113
|
+
ondragenter?: ((event: Event & {
|
|
114
|
+
currentTarget: SVGPathElement;
|
|
115
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
116
|
+
ondragleave?: ((event: Event & {
|
|
117
|
+
currentTarget: SVGPathElement;
|
|
118
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
119
|
+
ondragover?: ((event: Event & {
|
|
120
|
+
currentTarget: SVGPathElement;
|
|
121
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
122
|
+
ondragend?: ((event: Event & {
|
|
123
|
+
currentTarget: SVGPathElement;
|
|
124
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
125
|
+
ontouchstart?: ((event: Event & {
|
|
126
|
+
currentTarget: SVGPathElement;
|
|
127
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
128
|
+
ontouchmove?: ((event: Event & {
|
|
129
|
+
currentTarget: SVGPathElement;
|
|
130
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
131
|
+
ontouchend?: ((event: Event & {
|
|
132
|
+
currentTarget: SVGPathElement;
|
|
133
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
134
|
+
ontouchcancel?: ((event: Event & {
|
|
135
|
+
currentTarget: SVGPathElement;
|
|
136
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
137
|
+
oncontextmenu?: ((event: Event & {
|
|
138
|
+
currentTarget: SVGPathElement;
|
|
139
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
140
|
+
onwheel?: ((event: Event & {
|
|
141
|
+
currentTarget: SVGPathElement;
|
|
142
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
68
143
|
class?: string | undefined;
|
|
69
144
|
style?: string | undefined;
|
|
70
145
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
146
|
+
title?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
71
147
|
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
72
148
|
};
|
|
73
149
|
/**
|
|
@@ -84,6 +160,16 @@ export declare function selectFirst(args: TransformArg<DataRecord>): {
|
|
|
84
160
|
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
85
161
|
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
86
162
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
163
|
+
fontFamily?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontFamily, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
164
|
+
fontSize?: import("../types/index.js").ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "math" | (string & {}) | "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
165
|
+
fontStyle?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontStyle, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
166
|
+
fontVariant?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontVariant, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
167
|
+
fontWeight?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontWeight, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
168
|
+
letterSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.LetterSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
169
|
+
wordSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.WordSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
170
|
+
textAnchor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextAnchor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
171
|
+
textTransform?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextTransform, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
172
|
+
textDecoration?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextDecoration<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
87
173
|
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
88
174
|
channel: string;
|
|
89
175
|
order?: "ascending" | "descending";
|
|
@@ -97,45 +183,107 @@ export declare function selectFirst(args: TransformArg<DataRecord>): {
|
|
|
97
183
|
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
98
184
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
99
185
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
186
|
+
blend?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
100
187
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
101
188
|
clipPath?: string | undefined;
|
|
102
189
|
mask?: string | undefined;
|
|
103
190
|
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
104
191
|
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
105
192
|
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
106
|
-
onclick?:
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
193
|
+
onclick?: ((event: Event & {
|
|
194
|
+
currentTarget: SVGPathElement;
|
|
195
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
196
|
+
ondblclick?: ((event: Event & {
|
|
197
|
+
currentTarget: SVGPathElement;
|
|
198
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
199
|
+
onmouseup?: ((event: Event & {
|
|
200
|
+
currentTarget: SVGPathElement;
|
|
201
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
202
|
+
onmousedown?: ((event: Event & {
|
|
203
|
+
currentTarget: SVGPathElement;
|
|
204
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
205
|
+
onmouseenter?: ((event: Event & {
|
|
206
|
+
currentTarget: SVGPathElement;
|
|
207
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
208
|
+
onmousemove?: ((event: Event & {
|
|
209
|
+
currentTarget: SVGPathElement;
|
|
210
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
211
|
+
onmouseleave?: ((event: Event & {
|
|
212
|
+
currentTarget: SVGPathElement;
|
|
213
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
214
|
+
onmouseout?: ((event: Event & {
|
|
215
|
+
currentTarget: SVGPathElement;
|
|
216
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
217
|
+
onmouseover?: ((event: Event & {
|
|
218
|
+
currentTarget: SVGPathElement;
|
|
219
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
220
|
+
onpointercancel?: ((event: Event & {
|
|
221
|
+
currentTarget: SVGPathElement;
|
|
222
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
223
|
+
onpointerdown?: ((event: Event & {
|
|
224
|
+
currentTarget: SVGPathElement;
|
|
225
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
226
|
+
onpointerup?: ((event: Event & {
|
|
227
|
+
currentTarget: SVGPathElement;
|
|
228
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
229
|
+
onpointerenter?: ((event: Event & {
|
|
230
|
+
currentTarget: SVGPathElement;
|
|
231
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
232
|
+
onpointerleave?: ((event: Event & {
|
|
233
|
+
currentTarget: SVGPathElement;
|
|
234
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
235
|
+
onpointermove?: ((event: Event & {
|
|
236
|
+
currentTarget: SVGPathElement;
|
|
237
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
238
|
+
onpointerover?: ((event: Event & {
|
|
239
|
+
currentTarget: SVGPathElement;
|
|
240
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
241
|
+
onpointerout?: ((event: Event & {
|
|
242
|
+
currentTarget: SVGPathElement;
|
|
243
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
244
|
+
ondrag?: ((event: Event & {
|
|
245
|
+
currentTarget: SVGPathElement;
|
|
246
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
247
|
+
ondrop?: ((event: Event & {
|
|
248
|
+
currentTarget: SVGPathElement;
|
|
249
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
250
|
+
ondragstart?: ((event: Event & {
|
|
251
|
+
currentTarget: SVGPathElement;
|
|
252
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
253
|
+
ondragenter?: ((event: Event & {
|
|
254
|
+
currentTarget: SVGPathElement;
|
|
255
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
256
|
+
ondragleave?: ((event: Event & {
|
|
257
|
+
currentTarget: SVGPathElement;
|
|
258
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
259
|
+
ondragover?: ((event: Event & {
|
|
260
|
+
currentTarget: SVGPathElement;
|
|
261
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
262
|
+
ondragend?: ((event: Event & {
|
|
263
|
+
currentTarget: SVGPathElement;
|
|
264
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
265
|
+
ontouchstart?: ((event: Event & {
|
|
266
|
+
currentTarget: SVGPathElement;
|
|
267
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
268
|
+
ontouchmove?: ((event: Event & {
|
|
269
|
+
currentTarget: SVGPathElement;
|
|
270
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
271
|
+
ontouchend?: ((event: Event & {
|
|
272
|
+
currentTarget: SVGPathElement;
|
|
273
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
274
|
+
ontouchcancel?: ((event: Event & {
|
|
275
|
+
currentTarget: SVGPathElement;
|
|
276
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
277
|
+
oncontextmenu?: ((event: Event & {
|
|
278
|
+
currentTarget: SVGPathElement;
|
|
279
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
280
|
+
onwheel?: ((event: Event & {
|
|
281
|
+
currentTarget: SVGPathElement;
|
|
282
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
136
283
|
class?: string | undefined;
|
|
137
284
|
style?: string | undefined;
|
|
138
285
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
286
|
+
title?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
139
287
|
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
140
288
|
};
|
|
141
289
|
/**
|
|
@@ -152,6 +300,16 @@ export declare function selectLast(args: TransformArg<DataRecord>): {
|
|
|
152
300
|
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
153
301
|
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
154
302
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
303
|
+
fontFamily?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontFamily, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
304
|
+
fontSize?: import("../types/index.js").ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "math" | (string & {}) | "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
305
|
+
fontStyle?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontStyle, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
306
|
+
fontVariant?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontVariant, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
307
|
+
fontWeight?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontWeight, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
308
|
+
letterSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.LetterSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
309
|
+
wordSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.WordSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
310
|
+
textAnchor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextAnchor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
311
|
+
textTransform?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextTransform, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
312
|
+
textDecoration?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextDecoration<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
155
313
|
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
156
314
|
channel: string;
|
|
157
315
|
order?: "ascending" | "descending";
|
|
@@ -165,47 +323,110 @@ export declare function selectLast(args: TransformArg<DataRecord>): {
|
|
|
165
323
|
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
166
324
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
167
325
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
326
|
+
blend?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
168
327
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
169
328
|
clipPath?: string | undefined;
|
|
170
329
|
mask?: string | undefined;
|
|
171
330
|
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
172
331
|
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
173
332
|
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
174
|
-
onclick?:
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
333
|
+
onclick?: ((event: Event & {
|
|
334
|
+
currentTarget: SVGPathElement;
|
|
335
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
336
|
+
ondblclick?: ((event: Event & {
|
|
337
|
+
currentTarget: SVGPathElement;
|
|
338
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
339
|
+
onmouseup?: ((event: Event & {
|
|
340
|
+
currentTarget: SVGPathElement;
|
|
341
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
342
|
+
onmousedown?: ((event: Event & {
|
|
343
|
+
currentTarget: SVGPathElement;
|
|
344
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
345
|
+
onmouseenter?: ((event: Event & {
|
|
346
|
+
currentTarget: SVGPathElement;
|
|
347
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
348
|
+
onmousemove?: ((event: Event & {
|
|
349
|
+
currentTarget: SVGPathElement;
|
|
350
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
351
|
+
onmouseleave?: ((event: Event & {
|
|
352
|
+
currentTarget: SVGPathElement;
|
|
353
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
354
|
+
onmouseout?: ((event: Event & {
|
|
355
|
+
currentTarget: SVGPathElement;
|
|
356
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
357
|
+
onmouseover?: ((event: Event & {
|
|
358
|
+
currentTarget: SVGPathElement;
|
|
359
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
360
|
+
onpointercancel?: ((event: Event & {
|
|
361
|
+
currentTarget: SVGPathElement;
|
|
362
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
363
|
+
onpointerdown?: ((event: Event & {
|
|
364
|
+
currentTarget: SVGPathElement;
|
|
365
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
366
|
+
onpointerup?: ((event: Event & {
|
|
367
|
+
currentTarget: SVGPathElement;
|
|
368
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
369
|
+
onpointerenter?: ((event: Event & {
|
|
370
|
+
currentTarget: SVGPathElement;
|
|
371
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
372
|
+
onpointerleave?: ((event: Event & {
|
|
373
|
+
currentTarget: SVGPathElement;
|
|
374
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
375
|
+
onpointermove?: ((event: Event & {
|
|
376
|
+
currentTarget: SVGPathElement;
|
|
377
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
378
|
+
onpointerover?: ((event: Event & {
|
|
379
|
+
currentTarget: SVGPathElement;
|
|
380
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
381
|
+
onpointerout?: ((event: Event & {
|
|
382
|
+
currentTarget: SVGPathElement;
|
|
383
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
384
|
+
ondrag?: ((event: Event & {
|
|
385
|
+
currentTarget: SVGPathElement;
|
|
386
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
387
|
+
ondrop?: ((event: Event & {
|
|
388
|
+
currentTarget: SVGPathElement;
|
|
389
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
390
|
+
ondragstart?: ((event: Event & {
|
|
391
|
+
currentTarget: SVGPathElement;
|
|
392
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
393
|
+
ondragenter?: ((event: Event & {
|
|
394
|
+
currentTarget: SVGPathElement;
|
|
395
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
396
|
+
ondragleave?: ((event: Event & {
|
|
397
|
+
currentTarget: SVGPathElement;
|
|
398
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
399
|
+
ondragover?: ((event: Event & {
|
|
400
|
+
currentTarget: SVGPathElement;
|
|
401
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
402
|
+
ondragend?: ((event: Event & {
|
|
403
|
+
currentTarget: SVGPathElement;
|
|
404
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
405
|
+
ontouchstart?: ((event: Event & {
|
|
406
|
+
currentTarget: SVGPathElement;
|
|
407
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
408
|
+
ontouchmove?: ((event: Event & {
|
|
409
|
+
currentTarget: SVGPathElement;
|
|
410
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
411
|
+
ontouchend?: ((event: Event & {
|
|
412
|
+
currentTarget: SVGPathElement;
|
|
413
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
414
|
+
ontouchcancel?: ((event: Event & {
|
|
415
|
+
currentTarget: SVGPathElement;
|
|
416
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
417
|
+
oncontextmenu?: ((event: Event & {
|
|
418
|
+
currentTarget: SVGPathElement;
|
|
419
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
420
|
+
onwheel?: ((event: Event & {
|
|
421
|
+
currentTarget: SVGPathElement;
|
|
422
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
204
423
|
class?: string | undefined;
|
|
205
424
|
style?: string | undefined;
|
|
206
425
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
426
|
+
title?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
207
427
|
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
208
428
|
};
|
|
429
|
+
/** keeps only the datum with the smallest x value per group */
|
|
209
430
|
export declare function selectMinX(args: TransformArg<DataRecord>): {
|
|
210
431
|
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
211
432
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
@@ -217,6 +438,16 @@ export declare function selectMinX(args: TransformArg<DataRecord>): {
|
|
|
217
438
|
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
218
439
|
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
219
440
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
441
|
+
fontFamily?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontFamily, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
442
|
+
fontSize?: import("../types/index.js").ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "math" | (string & {}) | "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
443
|
+
fontStyle?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontStyle, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
444
|
+
fontVariant?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontVariant, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
445
|
+
fontWeight?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontWeight, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
446
|
+
letterSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.LetterSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
447
|
+
wordSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.WordSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
448
|
+
textAnchor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextAnchor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
449
|
+
textTransform?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextTransform, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
450
|
+
textDecoration?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextDecoration<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
220
451
|
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
221
452
|
channel: string;
|
|
222
453
|
order?: "ascending" | "descending";
|
|
@@ -230,47 +461,110 @@ export declare function selectMinX(args: TransformArg<DataRecord>): {
|
|
|
230
461
|
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
231
462
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
232
463
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
464
|
+
blend?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
233
465
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
234
466
|
clipPath?: string | undefined;
|
|
235
467
|
mask?: string | undefined;
|
|
236
468
|
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
237
469
|
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
238
470
|
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
239
|
-
onclick?:
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
471
|
+
onclick?: ((event: Event & {
|
|
472
|
+
currentTarget: SVGPathElement;
|
|
473
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
474
|
+
ondblclick?: ((event: Event & {
|
|
475
|
+
currentTarget: SVGPathElement;
|
|
476
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
477
|
+
onmouseup?: ((event: Event & {
|
|
478
|
+
currentTarget: SVGPathElement;
|
|
479
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
480
|
+
onmousedown?: ((event: Event & {
|
|
481
|
+
currentTarget: SVGPathElement;
|
|
482
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
483
|
+
onmouseenter?: ((event: Event & {
|
|
484
|
+
currentTarget: SVGPathElement;
|
|
485
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
486
|
+
onmousemove?: ((event: Event & {
|
|
487
|
+
currentTarget: SVGPathElement;
|
|
488
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
489
|
+
onmouseleave?: ((event: Event & {
|
|
490
|
+
currentTarget: SVGPathElement;
|
|
491
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
492
|
+
onmouseout?: ((event: Event & {
|
|
493
|
+
currentTarget: SVGPathElement;
|
|
494
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
495
|
+
onmouseover?: ((event: Event & {
|
|
496
|
+
currentTarget: SVGPathElement;
|
|
497
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
498
|
+
onpointercancel?: ((event: Event & {
|
|
499
|
+
currentTarget: SVGPathElement;
|
|
500
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
501
|
+
onpointerdown?: ((event: Event & {
|
|
502
|
+
currentTarget: SVGPathElement;
|
|
503
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
504
|
+
onpointerup?: ((event: Event & {
|
|
505
|
+
currentTarget: SVGPathElement;
|
|
506
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
507
|
+
onpointerenter?: ((event: Event & {
|
|
508
|
+
currentTarget: SVGPathElement;
|
|
509
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
510
|
+
onpointerleave?: ((event: Event & {
|
|
511
|
+
currentTarget: SVGPathElement;
|
|
512
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
513
|
+
onpointermove?: ((event: Event & {
|
|
514
|
+
currentTarget: SVGPathElement;
|
|
515
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
516
|
+
onpointerover?: ((event: Event & {
|
|
517
|
+
currentTarget: SVGPathElement;
|
|
518
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
519
|
+
onpointerout?: ((event: Event & {
|
|
520
|
+
currentTarget: SVGPathElement;
|
|
521
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
522
|
+
ondrag?: ((event: Event & {
|
|
523
|
+
currentTarget: SVGPathElement;
|
|
524
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
525
|
+
ondrop?: ((event: Event & {
|
|
526
|
+
currentTarget: SVGPathElement;
|
|
527
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
528
|
+
ondragstart?: ((event: Event & {
|
|
529
|
+
currentTarget: SVGPathElement;
|
|
530
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
531
|
+
ondragenter?: ((event: Event & {
|
|
532
|
+
currentTarget: SVGPathElement;
|
|
533
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
534
|
+
ondragleave?: ((event: Event & {
|
|
535
|
+
currentTarget: SVGPathElement;
|
|
536
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
537
|
+
ondragover?: ((event: Event & {
|
|
538
|
+
currentTarget: SVGPathElement;
|
|
539
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
540
|
+
ondragend?: ((event: Event & {
|
|
541
|
+
currentTarget: SVGPathElement;
|
|
542
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
543
|
+
ontouchstart?: ((event: Event & {
|
|
544
|
+
currentTarget: SVGPathElement;
|
|
545
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
546
|
+
ontouchmove?: ((event: Event & {
|
|
547
|
+
currentTarget: SVGPathElement;
|
|
548
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
549
|
+
ontouchend?: ((event: Event & {
|
|
550
|
+
currentTarget: SVGPathElement;
|
|
551
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
552
|
+
ontouchcancel?: ((event: Event & {
|
|
553
|
+
currentTarget: SVGPathElement;
|
|
554
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
555
|
+
oncontextmenu?: ((event: Event & {
|
|
556
|
+
currentTarget: SVGPathElement;
|
|
557
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
558
|
+
onwheel?: ((event: Event & {
|
|
559
|
+
currentTarget: SVGPathElement;
|
|
560
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
269
561
|
class?: string | undefined;
|
|
270
562
|
style?: string | undefined;
|
|
271
563
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
564
|
+
title?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
272
565
|
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
273
566
|
};
|
|
567
|
+
/** keeps only the datum with the largest x value per group */
|
|
274
568
|
export declare function selectMaxX(args: TransformArg<DataRecord>): {
|
|
275
569
|
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
276
570
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
@@ -282,6 +576,16 @@ export declare function selectMaxX(args: TransformArg<DataRecord>): {
|
|
|
282
576
|
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
283
577
|
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
284
578
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
579
|
+
fontFamily?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontFamily, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
580
|
+
fontSize?: import("../types/index.js").ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "math" | (string & {}) | "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
581
|
+
fontStyle?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontStyle, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
582
|
+
fontVariant?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontVariant, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
583
|
+
fontWeight?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontWeight, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
584
|
+
letterSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.LetterSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
585
|
+
wordSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.WordSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
586
|
+
textAnchor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextAnchor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
587
|
+
textTransform?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextTransform, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
588
|
+
textDecoration?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextDecoration<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
285
589
|
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
286
590
|
channel: string;
|
|
287
591
|
order?: "ascending" | "descending";
|
|
@@ -295,47 +599,110 @@ export declare function selectMaxX(args: TransformArg<DataRecord>): {
|
|
|
295
599
|
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
296
600
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
297
601
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
602
|
+
blend?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
298
603
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
299
604
|
clipPath?: string | undefined;
|
|
300
605
|
mask?: string | undefined;
|
|
301
606
|
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
302
607
|
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
303
608
|
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
304
|
-
onclick?:
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
609
|
+
onclick?: ((event: Event & {
|
|
610
|
+
currentTarget: SVGPathElement;
|
|
611
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
612
|
+
ondblclick?: ((event: Event & {
|
|
613
|
+
currentTarget: SVGPathElement;
|
|
614
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
615
|
+
onmouseup?: ((event: Event & {
|
|
616
|
+
currentTarget: SVGPathElement;
|
|
617
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
618
|
+
onmousedown?: ((event: Event & {
|
|
619
|
+
currentTarget: SVGPathElement;
|
|
620
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
621
|
+
onmouseenter?: ((event: Event & {
|
|
622
|
+
currentTarget: SVGPathElement;
|
|
623
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
624
|
+
onmousemove?: ((event: Event & {
|
|
625
|
+
currentTarget: SVGPathElement;
|
|
626
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
627
|
+
onmouseleave?: ((event: Event & {
|
|
628
|
+
currentTarget: SVGPathElement;
|
|
629
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
630
|
+
onmouseout?: ((event: Event & {
|
|
631
|
+
currentTarget: SVGPathElement;
|
|
632
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
633
|
+
onmouseover?: ((event: Event & {
|
|
634
|
+
currentTarget: SVGPathElement;
|
|
635
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
636
|
+
onpointercancel?: ((event: Event & {
|
|
637
|
+
currentTarget: SVGPathElement;
|
|
638
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
639
|
+
onpointerdown?: ((event: Event & {
|
|
640
|
+
currentTarget: SVGPathElement;
|
|
641
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
642
|
+
onpointerup?: ((event: Event & {
|
|
643
|
+
currentTarget: SVGPathElement;
|
|
644
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
645
|
+
onpointerenter?: ((event: Event & {
|
|
646
|
+
currentTarget: SVGPathElement;
|
|
647
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
648
|
+
onpointerleave?: ((event: Event & {
|
|
649
|
+
currentTarget: SVGPathElement;
|
|
650
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
651
|
+
onpointermove?: ((event: Event & {
|
|
652
|
+
currentTarget: SVGPathElement;
|
|
653
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
654
|
+
onpointerover?: ((event: Event & {
|
|
655
|
+
currentTarget: SVGPathElement;
|
|
656
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
657
|
+
onpointerout?: ((event: Event & {
|
|
658
|
+
currentTarget: SVGPathElement;
|
|
659
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
660
|
+
ondrag?: ((event: Event & {
|
|
661
|
+
currentTarget: SVGPathElement;
|
|
662
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
663
|
+
ondrop?: ((event: Event & {
|
|
664
|
+
currentTarget: SVGPathElement;
|
|
665
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
666
|
+
ondragstart?: ((event: Event & {
|
|
667
|
+
currentTarget: SVGPathElement;
|
|
668
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
669
|
+
ondragenter?: ((event: Event & {
|
|
670
|
+
currentTarget: SVGPathElement;
|
|
671
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
672
|
+
ondragleave?: ((event: Event & {
|
|
673
|
+
currentTarget: SVGPathElement;
|
|
674
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
675
|
+
ondragover?: ((event: Event & {
|
|
676
|
+
currentTarget: SVGPathElement;
|
|
677
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
678
|
+
ondragend?: ((event: Event & {
|
|
679
|
+
currentTarget: SVGPathElement;
|
|
680
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
681
|
+
ontouchstart?: ((event: Event & {
|
|
682
|
+
currentTarget: SVGPathElement;
|
|
683
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
684
|
+
ontouchmove?: ((event: Event & {
|
|
685
|
+
currentTarget: SVGPathElement;
|
|
686
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
687
|
+
ontouchend?: ((event: Event & {
|
|
688
|
+
currentTarget: SVGPathElement;
|
|
689
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
690
|
+
ontouchcancel?: ((event: Event & {
|
|
691
|
+
currentTarget: SVGPathElement;
|
|
692
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
693
|
+
oncontextmenu?: ((event: Event & {
|
|
694
|
+
currentTarget: SVGPathElement;
|
|
695
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
696
|
+
onwheel?: ((event: Event & {
|
|
697
|
+
currentTarget: SVGPathElement;
|
|
698
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
334
699
|
class?: string | undefined;
|
|
335
700
|
style?: string | undefined;
|
|
336
701
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
702
|
+
title?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
337
703
|
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
338
704
|
};
|
|
705
|
+
/** keeps only the datum with the smallest y value per group */
|
|
339
706
|
export declare function selectMinY(args: TransformArg<DataRecord>): {
|
|
340
707
|
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
341
708
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
@@ -347,6 +714,16 @@ export declare function selectMinY(args: TransformArg<DataRecord>): {
|
|
|
347
714
|
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
348
715
|
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
349
716
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
717
|
+
fontFamily?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontFamily, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
718
|
+
fontSize?: import("../types/index.js").ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "math" | (string & {}) | "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
719
|
+
fontStyle?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontStyle, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
720
|
+
fontVariant?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontVariant, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
721
|
+
fontWeight?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontWeight, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
722
|
+
letterSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.LetterSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
723
|
+
wordSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.WordSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
724
|
+
textAnchor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextAnchor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
725
|
+
textTransform?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextTransform, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
726
|
+
textDecoration?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextDecoration<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
350
727
|
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
351
728
|
channel: string;
|
|
352
729
|
order?: "ascending" | "descending";
|
|
@@ -360,47 +737,110 @@ export declare function selectMinY(args: TransformArg<DataRecord>): {
|
|
|
360
737
|
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
361
738
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
362
739
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
740
|
+
blend?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
363
741
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
364
742
|
clipPath?: string | undefined;
|
|
365
743
|
mask?: string | undefined;
|
|
366
744
|
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
367
745
|
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
368
746
|
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
369
|
-
onclick?:
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
747
|
+
onclick?: ((event: Event & {
|
|
748
|
+
currentTarget: SVGPathElement;
|
|
749
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
750
|
+
ondblclick?: ((event: Event & {
|
|
751
|
+
currentTarget: SVGPathElement;
|
|
752
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
753
|
+
onmouseup?: ((event: Event & {
|
|
754
|
+
currentTarget: SVGPathElement;
|
|
755
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
756
|
+
onmousedown?: ((event: Event & {
|
|
757
|
+
currentTarget: SVGPathElement;
|
|
758
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
759
|
+
onmouseenter?: ((event: Event & {
|
|
760
|
+
currentTarget: SVGPathElement;
|
|
761
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
762
|
+
onmousemove?: ((event: Event & {
|
|
763
|
+
currentTarget: SVGPathElement;
|
|
764
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
765
|
+
onmouseleave?: ((event: Event & {
|
|
766
|
+
currentTarget: SVGPathElement;
|
|
767
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
768
|
+
onmouseout?: ((event: Event & {
|
|
769
|
+
currentTarget: SVGPathElement;
|
|
770
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
771
|
+
onmouseover?: ((event: Event & {
|
|
772
|
+
currentTarget: SVGPathElement;
|
|
773
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
774
|
+
onpointercancel?: ((event: Event & {
|
|
775
|
+
currentTarget: SVGPathElement;
|
|
776
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
777
|
+
onpointerdown?: ((event: Event & {
|
|
778
|
+
currentTarget: SVGPathElement;
|
|
779
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
780
|
+
onpointerup?: ((event: Event & {
|
|
781
|
+
currentTarget: SVGPathElement;
|
|
782
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
783
|
+
onpointerenter?: ((event: Event & {
|
|
784
|
+
currentTarget: SVGPathElement;
|
|
785
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
786
|
+
onpointerleave?: ((event: Event & {
|
|
787
|
+
currentTarget: SVGPathElement;
|
|
788
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
789
|
+
onpointermove?: ((event: Event & {
|
|
790
|
+
currentTarget: SVGPathElement;
|
|
791
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
792
|
+
onpointerover?: ((event: Event & {
|
|
793
|
+
currentTarget: SVGPathElement;
|
|
794
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
795
|
+
onpointerout?: ((event: Event & {
|
|
796
|
+
currentTarget: SVGPathElement;
|
|
797
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
798
|
+
ondrag?: ((event: Event & {
|
|
799
|
+
currentTarget: SVGPathElement;
|
|
800
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
801
|
+
ondrop?: ((event: Event & {
|
|
802
|
+
currentTarget: SVGPathElement;
|
|
803
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
804
|
+
ondragstart?: ((event: Event & {
|
|
805
|
+
currentTarget: SVGPathElement;
|
|
806
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
807
|
+
ondragenter?: ((event: Event & {
|
|
808
|
+
currentTarget: SVGPathElement;
|
|
809
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
810
|
+
ondragleave?: ((event: Event & {
|
|
811
|
+
currentTarget: SVGPathElement;
|
|
812
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
813
|
+
ondragover?: ((event: Event & {
|
|
814
|
+
currentTarget: SVGPathElement;
|
|
815
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
816
|
+
ondragend?: ((event: Event & {
|
|
817
|
+
currentTarget: SVGPathElement;
|
|
818
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
819
|
+
ontouchstart?: ((event: Event & {
|
|
820
|
+
currentTarget: SVGPathElement;
|
|
821
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
822
|
+
ontouchmove?: ((event: Event & {
|
|
823
|
+
currentTarget: SVGPathElement;
|
|
824
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
825
|
+
ontouchend?: ((event: Event & {
|
|
826
|
+
currentTarget: SVGPathElement;
|
|
827
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
828
|
+
ontouchcancel?: ((event: Event & {
|
|
829
|
+
currentTarget: SVGPathElement;
|
|
830
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
831
|
+
oncontextmenu?: ((event: Event & {
|
|
832
|
+
currentTarget: SVGPathElement;
|
|
833
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
834
|
+
onwheel?: ((event: Event & {
|
|
835
|
+
currentTarget: SVGPathElement;
|
|
836
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
399
837
|
class?: string | undefined;
|
|
400
838
|
style?: string | undefined;
|
|
401
839
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
840
|
+
title?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
402
841
|
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
403
842
|
};
|
|
843
|
+
/** keeps only the datum with the largest y value per group */
|
|
404
844
|
export declare function selectMaxY(args: TransformArg<DataRecord>): {
|
|
405
845
|
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
406
846
|
facet?: "auto" | "include" | "exclude" | undefined;
|
|
@@ -412,6 +852,16 @@ export declare function selectMaxY(args: TransformArg<DataRecord>): {
|
|
|
412
852
|
dodgeY?: import("./dodge.js").DodgeYOptions | undefined;
|
|
413
853
|
fill?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
414
854
|
fillOpacity?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
855
|
+
fontFamily?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontFamily, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
856
|
+
fontSize?: import("../types/index.js").ConstantAccessor<number | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "math" | (string & {}) | "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large" | "larger" | "smaller", Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
857
|
+
fontStyle?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontStyle, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
858
|
+
fontVariant?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontVariant, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
859
|
+
fontWeight?: import("../types/index.js").ConstantAccessor<import("csstype").Property.FontWeight, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
860
|
+
letterSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.LetterSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
861
|
+
wordSpacing?: import("../types/index.js").ConstantAccessor<import("csstype").Property.WordSpacing<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
862
|
+
textAnchor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextAnchor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
863
|
+
textTransform?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextTransform, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
864
|
+
textDecoration?: import("../types/index.js").ConstantAccessor<import("csstype").Property.TextDecoration<0 | (string & {})>, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
415
865
|
sort?: ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | {
|
|
416
866
|
channel: string;
|
|
417
867
|
order?: "ascending" | "descending";
|
|
@@ -425,45 +875,107 @@ export declare function selectMaxY(args: TransformArg<DataRecord>): {
|
|
|
425
875
|
opacity?: import("../types/channel.js").ChannelAccessor<Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
426
876
|
strokeDasharray?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
427
877
|
strokeDashoffset?: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
878
|
+
blend?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
428
879
|
mixBlendMode?: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
429
880
|
clipPath?: string | undefined;
|
|
430
881
|
mask?: string | undefined;
|
|
431
882
|
imageFilter?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
432
883
|
shapeRendering?: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
433
884
|
paintOrder?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
434
|
-
onclick?:
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
885
|
+
onclick?: ((event: Event & {
|
|
886
|
+
currentTarget: SVGPathElement;
|
|
887
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
888
|
+
ondblclick?: ((event: Event & {
|
|
889
|
+
currentTarget: SVGPathElement;
|
|
890
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
891
|
+
onmouseup?: ((event: Event & {
|
|
892
|
+
currentTarget: SVGPathElement;
|
|
893
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
894
|
+
onmousedown?: ((event: Event & {
|
|
895
|
+
currentTarget: SVGPathElement;
|
|
896
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
897
|
+
onmouseenter?: ((event: Event & {
|
|
898
|
+
currentTarget: SVGPathElement;
|
|
899
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
900
|
+
onmousemove?: ((event: Event & {
|
|
901
|
+
currentTarget: SVGPathElement;
|
|
902
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
903
|
+
onmouseleave?: ((event: Event & {
|
|
904
|
+
currentTarget: SVGPathElement;
|
|
905
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
906
|
+
onmouseout?: ((event: Event & {
|
|
907
|
+
currentTarget: SVGPathElement;
|
|
908
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
909
|
+
onmouseover?: ((event: Event & {
|
|
910
|
+
currentTarget: SVGPathElement;
|
|
911
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
912
|
+
onpointercancel?: ((event: Event & {
|
|
913
|
+
currentTarget: SVGPathElement;
|
|
914
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
915
|
+
onpointerdown?: ((event: Event & {
|
|
916
|
+
currentTarget: SVGPathElement;
|
|
917
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
918
|
+
onpointerup?: ((event: Event & {
|
|
919
|
+
currentTarget: SVGPathElement;
|
|
920
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
921
|
+
onpointerenter?: ((event: Event & {
|
|
922
|
+
currentTarget: SVGPathElement;
|
|
923
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
924
|
+
onpointerleave?: ((event: Event & {
|
|
925
|
+
currentTarget: SVGPathElement;
|
|
926
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
927
|
+
onpointermove?: ((event: Event & {
|
|
928
|
+
currentTarget: SVGPathElement;
|
|
929
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
930
|
+
onpointerover?: ((event: Event & {
|
|
931
|
+
currentTarget: SVGPathElement;
|
|
932
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
933
|
+
onpointerout?: ((event: Event & {
|
|
934
|
+
currentTarget: SVGPathElement;
|
|
935
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
936
|
+
ondrag?: ((event: Event & {
|
|
937
|
+
currentTarget: SVGPathElement;
|
|
938
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
939
|
+
ondrop?: ((event: Event & {
|
|
940
|
+
currentTarget: SVGPathElement;
|
|
941
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
942
|
+
ondragstart?: ((event: Event & {
|
|
943
|
+
currentTarget: SVGPathElement;
|
|
944
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
945
|
+
ondragenter?: ((event: Event & {
|
|
946
|
+
currentTarget: SVGPathElement;
|
|
947
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
948
|
+
ondragleave?: ((event: Event & {
|
|
949
|
+
currentTarget: SVGPathElement;
|
|
950
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
951
|
+
ondragover?: ((event: Event & {
|
|
952
|
+
currentTarget: SVGPathElement;
|
|
953
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
954
|
+
ondragend?: ((event: Event & {
|
|
955
|
+
currentTarget: SVGPathElement;
|
|
956
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
957
|
+
ontouchstart?: ((event: Event & {
|
|
958
|
+
currentTarget: SVGPathElement;
|
|
959
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
960
|
+
ontouchmove?: ((event: Event & {
|
|
961
|
+
currentTarget: SVGPathElement;
|
|
962
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
963
|
+
ontouchend?: ((event: Event & {
|
|
964
|
+
currentTarget: SVGPathElement;
|
|
965
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
966
|
+
ontouchcancel?: ((event: Event & {
|
|
967
|
+
currentTarget: SVGPathElement;
|
|
968
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
969
|
+
oncontextmenu?: ((event: Event & {
|
|
970
|
+
currentTarget: SVGPathElement;
|
|
971
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
972
|
+
onwheel?: ((event: Event & {
|
|
973
|
+
currentTarget: SVGPathElement;
|
|
974
|
+
}, datum: Record<string | symbol, import("../types/data.js").RawValue>, index: number) => void) | undefined;
|
|
464
975
|
class?: string | undefined;
|
|
465
976
|
style?: string | undefined;
|
|
466
977
|
cursor?: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
978
|
+
title?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data.js").RawValue>>;
|
|
467
979
|
data: Record<string | symbol, import("../types/data.js").RawValue>[];
|
|
468
980
|
};
|
|
469
981
|
export {};
|