svelteplot 0.4.0 → 0.4.1-pr-181.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 +3 -3
- package/dist/helpers/autoScales.js +1 -1
- package/dist/helpers/colors.d.ts +1 -1
- package/dist/helpers/index.d.ts +2 -2
- package/dist/helpers/mergeDeep.js +0 -1
- package/dist/helpers/reduce.js +0 -1
- package/dist/helpers/resolve.d.ts +1 -1
- package/dist/helpers/scales.d.ts +1 -1
- package/dist/helpers/scales.js +1 -1
- package/dist/helpers/typeChecks.d.ts +4 -4
- package/dist/marks/AreaX.svelte.d.ts +31 -30
- package/dist/marks/AreaY.svelte.d.ts +31 -30
- package/dist/marks/AxisX.svelte.d.ts +1 -1
- package/dist/marks/AxisY.svelte.d.ts +1 -1
- package/dist/marks/BarX.svelte.d.ts +1 -1
- package/dist/marks/BollingerX.svelte.d.ts +2 -73
- package/dist/marks/BollingerY.svelte.d.ts +2 -73
- package/dist/marks/BoxY.svelte.d.ts +6 -65
- package/dist/marks/CustomMark.svelte.d.ts +2 -80
- package/dist/marks/DifferenceY.svelte.d.ts +7 -66
- package/dist/marks/DotX.svelte.d.ts +29 -29
- package/dist/marks/DotY.svelte.d.ts +29 -29
- package/dist/marks/Frame.svelte +10 -4
- package/dist/marks/Frame.svelte.d.ts +1 -0
- package/dist/marks/Line.svelte.d.ts +2 -2
- package/dist/marks/LineX.svelte.d.ts +34 -33
- package/dist/marks/LineY.svelte.d.ts +34 -33
- package/dist/marks/Link.svelte +1 -4
- package/dist/marks/Rect.svelte +7 -4
- package/dist/marks/RuleX.svelte +3 -5
- package/dist/marks/RuleY.svelte +4 -5
- package/dist/marks/Spike.svelte.d.ts +27 -27
- package/dist/marks/Text.svelte +4 -3
- package/dist/marks/Text.svelte.d.ts +2 -2
- package/dist/marks/Vector.svelte +1 -3
- package/dist/marks/helpers/MultilineText.svelte +3 -7
- package/dist/marks/helpers/RectPath.svelte +2 -4
- package/dist/transforms/bollinger.d.ts +1 -66
- package/dist/transforms/group.d.ts +4 -12
- package/dist/transforms/interval.d.ts +2 -122
- package/dist/transforms/select.d.ts +7 -427
- package/dist/transforms/sort.d.ts +3 -242
- package/dist/transforms/stack.d.ts +3 -23
- package/dist/transforms/window.d.ts +2 -130
- package/dist/types/data.d.ts +3 -3
- package/dist/types/index.d.ts +1 -1
- package/package.json +126 -125
|
@@ -1,84 +1,6 @@
|
|
|
1
|
-
import type { DataRecord
|
|
2
|
-
import type { Snippet } from 'svelte';
|
|
1
|
+
import type { DataRecord } from '../types/index.js';
|
|
3
2
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
4
|
-
props():
|
|
5
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Datum>;
|
|
6
|
-
facet?: "auto" | "include" | "exclude";
|
|
7
|
-
fx: ChannelAccessor<Datum>;
|
|
8
|
-
fy: ChannelAccessor<Datum>;
|
|
9
|
-
dx: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
10
|
-
dy: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
11
|
-
fill: ChannelAccessor<Datum>;
|
|
12
|
-
fillOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
13
|
-
sort: {
|
|
14
|
-
channel: string;
|
|
15
|
-
order?: "ascending" | "descending";
|
|
16
|
-
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Datum>;
|
|
17
|
-
stroke: ChannelAccessor<Datum>;
|
|
18
|
-
strokeWidth: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
19
|
-
strokeOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
20
|
-
strokeLinejoin: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
|
|
21
|
-
strokeLinecap: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
|
|
22
|
-
strokeMiterlimit: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
23
|
-
opacity: ChannelAccessor<Datum>;
|
|
24
|
-
strokeDasharray: import("../types/index.js").ConstantAccessor<string, Datum>;
|
|
25
|
-
strokeDashoffset: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
26
|
-
mixBlendMode: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
|
|
27
|
-
clipPath: string;
|
|
28
|
-
imageFilter: import("../types/index.js").ConstantAccessor<string, Datum>;
|
|
29
|
-
shapeRendering: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
|
|
30
|
-
paintOrder: import("../types/index.js").ConstantAccessor<string, Datum>;
|
|
31
|
-
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
32
|
-
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
33
|
-
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
34
|
-
onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
35
|
-
onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
36
|
-
onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
37
|
-
onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
38
|
-
onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
39
|
-
onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
40
|
-
onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
41
|
-
onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
42
|
-
onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
43
|
-
onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
44
|
-
onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
45
|
-
onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
46
|
-
onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
47
|
-
onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
48
|
-
ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
49
|
-
ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
50
|
-
ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
51
|
-
ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
52
|
-
ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
53
|
-
ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
54
|
-
ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
55
|
-
ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
56
|
-
ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
57
|
-
ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
58
|
-
ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
59
|
-
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
60
|
-
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
61
|
-
class: string | null;
|
|
62
|
-
cursor: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Datum>;
|
|
63
|
-
}> & {
|
|
64
|
-
data?: Datum[] | undefined;
|
|
65
|
-
x?: ChannelAccessor<Datum>;
|
|
66
|
-
x1?: ChannelAccessor<Datum>;
|
|
67
|
-
x2?: ChannelAccessor<Datum>;
|
|
68
|
-
y?: ChannelAccessor<Datum>;
|
|
69
|
-
y1?: ChannelAccessor<Datum>;
|
|
70
|
-
y2?: ChannelAccessor<Datum>;
|
|
71
|
-
r?: ChannelAccessor<Datum>;
|
|
72
|
-
mark?: Snippet<[{
|
|
73
|
-
record: ScaledDataRecord<Datum>;
|
|
74
|
-
index: number;
|
|
75
|
-
usedScales: UsedScales;
|
|
76
|
-
}]> | undefined;
|
|
77
|
-
marks?: Snippet<[{
|
|
78
|
-
records: ScaledDataRecord<Datum>[];
|
|
79
|
-
usedScales: UsedScales;
|
|
80
|
-
}]> | undefined;
|
|
81
|
-
};
|
|
3
|
+
props(): any;
|
|
82
4
|
events(): {};
|
|
83
5
|
slots(): {};
|
|
84
6
|
bindings(): "";
|
|
@@ -1,82 +1,23 @@
|
|
|
1
1
|
import type { ChannelAccessor, CurveName, DataRecord } from '../types/index.js';
|
|
2
2
|
import type { CurveFactory } from 'd3-shape';
|
|
3
3
|
declare class __sveltets_Render<Datum extends DataRecord> {
|
|
4
|
-
props(): Omit<
|
|
5
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, Datum>;
|
|
6
|
-
facet?: "auto" | "include" | "exclude";
|
|
7
|
-
fx: ChannelAccessor<Datum>;
|
|
8
|
-
fy: ChannelAccessor<Datum>;
|
|
9
|
-
dx: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
10
|
-
dy: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
11
|
-
fill: ChannelAccessor<Datum>;
|
|
12
|
-
fillOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
13
|
-
sort: {
|
|
14
|
-
channel: string;
|
|
15
|
-
order?: "ascending" | "descending";
|
|
16
|
-
} | ((a: import("../types/index.js").RawValue, b: import("../types/index.js").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/index.js").RawValue, Datum>;
|
|
17
|
-
stroke: ChannelAccessor<Datum>;
|
|
18
|
-
strokeWidth: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
19
|
-
strokeOpacity: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
20
|
-
strokeLinejoin: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Datum>;
|
|
21
|
-
strokeLinecap: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Datum>;
|
|
22
|
-
strokeMiterlimit: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
23
|
-
opacity: ChannelAccessor<Datum>;
|
|
24
|
-
strokeDasharray: import("../types/index.js").ConstantAccessor<string, Datum>;
|
|
25
|
-
strokeDashoffset: import("../types/index.js").ConstantAccessor<number, Datum>;
|
|
26
|
-
mixBlendMode: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Datum>;
|
|
27
|
-
clipPath: string;
|
|
28
|
-
imageFilter: import("../types/index.js").ConstantAccessor<string, Datum>;
|
|
29
|
-
shapeRendering: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Datum>;
|
|
30
|
-
paintOrder: import("../types/index.js").ConstantAccessor<string, Datum>;
|
|
31
|
-
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
32
|
-
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
33
|
-
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
34
|
-
onmousedown?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
35
|
-
onmouseenter?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
36
|
-
onmousemove?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
37
|
-
onmouseleave?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
38
|
-
onmouseout?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
39
|
-
onmouseover?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
40
|
-
onpointercancel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
41
|
-
onpointerdown?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
42
|
-
onpointerup?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
43
|
-
onpointerenter?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
44
|
-
onpointerleave?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
45
|
-
onpointermove?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
46
|
-
onpointerover?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
47
|
-
onpointerout?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
48
|
-
ondrag?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
49
|
-
ondrop?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
50
|
-
ondragstart?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
51
|
-
ondragenter?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
52
|
-
ondragleave?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
53
|
-
ondragover?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
54
|
-
ondragend?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
55
|
-
ontouchstart?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
56
|
-
ontouchmove?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
57
|
-
ontouchend?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
58
|
-
ontouchcancel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
59
|
-
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
60
|
-
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
61
|
-
class: string | null;
|
|
62
|
-
cursor: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Datum>;
|
|
63
|
-
}>, "fill" | "fillOpacity"> & {
|
|
4
|
+
props(): Omit<BaseMarkProps<Datum_1>, "fill" | "fillOpacity"> & {
|
|
64
5
|
data: Datum[];
|
|
65
|
-
x1: ChannelAccessor<
|
|
6
|
+
x1: ChannelAccessor<Datum_1>;
|
|
66
7
|
/**
|
|
67
8
|
* the horizontal position of the metric; bound to the x scale
|
|
68
9
|
*/
|
|
69
|
-
x2: ChannelAccessor<
|
|
70
|
-
x: ChannelAccessor<
|
|
10
|
+
x2: ChannelAccessor<Datum_1>;
|
|
11
|
+
x: ChannelAccessor<Datum_1>;
|
|
71
12
|
/**
|
|
72
13
|
* the vertical position of the comparison; bound to the y scale
|
|
73
14
|
*/
|
|
74
|
-
y1: ChannelAccessor<
|
|
15
|
+
y1: ChannelAccessor<Datum_1>;
|
|
75
16
|
/**
|
|
76
17
|
* the vertical position of the metric; bound to the y scale
|
|
77
18
|
*/
|
|
78
|
-
y2: ChannelAccessor<
|
|
79
|
-
y: ChannelAccessor<
|
|
19
|
+
y2: ChannelAccessor<Datum_1>;
|
|
20
|
+
y: ChannelAccessor<Datum_1>;
|
|
80
21
|
fillOpacity?: number;
|
|
81
22
|
/**
|
|
82
23
|
* the stroke color of the "positive" area; defaults to 'blue'
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
import type { DataRow } from '../types/index.js';
|
|
2
2
|
declare class __sveltets_Render<Datum extends DataRow> {
|
|
3
3
|
props(): Omit<Partial<{
|
|
4
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, import("../types/data").
|
|
4
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data").RawValue>>;
|
|
5
5
|
facet?: "auto" | "include" | "exclude";
|
|
6
|
-
fx: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
7
|
-
fy: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
8
|
-
dx: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
9
|
-
dy: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
10
|
-
fill: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
11
|
-
fillOpacity: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
6
|
+
fx: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
7
|
+
fy: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
8
|
+
dx: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
9
|
+
dy: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
10
|
+
fill: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
11
|
+
fillOpacity: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
12
12
|
sort: {
|
|
13
13
|
channel: string;
|
|
14
14
|
order?: "ascending" | "descending";
|
|
15
|
-
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, import("../types/data").
|
|
16
|
-
stroke: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
17
|
-
strokeWidth: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
18
|
-
strokeOpacity: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
19
|
-
strokeLinejoin: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, import("../types/data").
|
|
20
|
-
strokeLinecap: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, import("../types/data").
|
|
21
|
-
strokeMiterlimit: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
22
|
-
opacity: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
23
|
-
strokeDasharray: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
24
|
-
strokeDashoffset: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
25
|
-
mixBlendMode: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, import("../types/data").
|
|
15
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, Record<string | symbol, import("../types/data").RawValue>>;
|
|
16
|
+
stroke: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
17
|
+
strokeWidth: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
18
|
+
strokeOpacity: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
19
|
+
strokeLinejoin: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data").RawValue>>;
|
|
20
|
+
strokeLinecap: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data").RawValue>>;
|
|
21
|
+
strokeMiterlimit: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
22
|
+
opacity: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
23
|
+
strokeDasharray: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
24
|
+
strokeDashoffset: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
25
|
+
mixBlendMode: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data").RawValue>>;
|
|
26
26
|
clipPath: string;
|
|
27
|
-
imageFilter: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
28
|
-
shapeRendering: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, import("../types/data").
|
|
29
|
-
paintOrder: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
27
|
+
imageFilter: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
28
|
+
shapeRendering: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data").RawValue>>;
|
|
29
|
+
paintOrder: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
30
30
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
31
31
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
32
32
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
@@ -58,15 +58,15 @@ declare class __sveltets_Render<Datum extends DataRow> {
|
|
|
58
58
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
59
59
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
60
60
|
class: string | null;
|
|
61
|
-
cursor: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, import("../types/data").
|
|
62
|
-
}> & import("../types/mark").LinkableMarkProps<import("../types/data").
|
|
63
|
-
data: import("../types/data").
|
|
64
|
-
x: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
65
|
-
y: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
66
|
-
r?: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
67
|
-
symbol?: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
61
|
+
cursor: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data").RawValue>>;
|
|
62
|
+
}> & import("../types/mark").LinkableMarkProps<Record<string | symbol, import("../types/data").RawValue>> & {
|
|
63
|
+
data: Record<string | symbol, import("../types/data").RawValue>[];
|
|
64
|
+
x: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
65
|
+
y: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
66
|
+
r?: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
67
|
+
symbol?: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>> | import("svelte").Snippet<[number, string]>;
|
|
68
68
|
canvas?: boolean;
|
|
69
|
-
dotClass?: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
69
|
+
dotClass?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
70
70
|
}, "y" | "data"> & {
|
|
71
71
|
data: Datum[];
|
|
72
72
|
};
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
import type { DataRow } from '../types/index.js';
|
|
2
2
|
declare class __sveltets_Render<Datum extends DataRow> {
|
|
3
3
|
props(): Omit<Partial<{
|
|
4
|
-
filter?: import("../types/index.js").ConstantAccessor<boolean, import("../types/data").
|
|
4
|
+
filter?: import("../types/index.js").ConstantAccessor<boolean, Record<string | symbol, import("../types/data").RawValue>>;
|
|
5
5
|
facet?: "auto" | "include" | "exclude";
|
|
6
|
-
fx: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
7
|
-
fy: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
8
|
-
dx: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
9
|
-
dy: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
10
|
-
fill: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
11
|
-
fillOpacity: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
6
|
+
fx: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
7
|
+
fy: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
8
|
+
dx: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
9
|
+
dy: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
10
|
+
fill: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
11
|
+
fillOpacity: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
12
12
|
sort: {
|
|
13
13
|
channel: string;
|
|
14
14
|
order?: "ascending" | "descending";
|
|
15
|
-
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, import("../types/data").
|
|
16
|
-
stroke: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
17
|
-
strokeWidth: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
18
|
-
strokeOpacity: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
19
|
-
strokeLinejoin: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, import("../types/data").
|
|
20
|
-
strokeLinecap: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, import("../types/data").
|
|
21
|
-
strokeMiterlimit: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
22
|
-
opacity: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
23
|
-
strokeDasharray: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
24
|
-
strokeDashoffset: import("../types/index.js").ConstantAccessor<number, import("../types/data").
|
|
25
|
-
mixBlendMode: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, import("../types/data").
|
|
15
|
+
} | ((a: import("../types/data").RawValue, b: import("../types/data").RawValue) => number) | import("../types/index.js").ConstantAccessor<import("../types/data").RawValue, Record<string | symbol, import("../types/data").RawValue>>;
|
|
16
|
+
stroke: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
17
|
+
strokeWidth: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
18
|
+
strokeOpacity: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
19
|
+
strokeLinejoin: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types/data").RawValue>>;
|
|
20
|
+
strokeLinecap: import("../types/index.js").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types/data").RawValue>>;
|
|
21
|
+
strokeMiterlimit: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
22
|
+
opacity: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
23
|
+
strokeDasharray: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
24
|
+
strokeDashoffset: import("../types/index.js").ConstantAccessor<number, Record<string | symbol, import("../types/data").RawValue>>;
|
|
25
|
+
mixBlendMode: import("../types/index.js").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types/data").RawValue>>;
|
|
26
26
|
clipPath: string;
|
|
27
|
-
imageFilter: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
28
|
-
shapeRendering: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, import("../types/data").
|
|
29
|
-
paintOrder: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
27
|
+
imageFilter: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
28
|
+
shapeRendering: import("../types/index.js").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types/data").RawValue>>;
|
|
29
|
+
paintOrder: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
30
30
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
31
31
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
32
32
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
@@ -58,15 +58,15 @@ declare class __sveltets_Render<Datum extends DataRow> {
|
|
|
58
58
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
59
59
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
60
60
|
class: string | null;
|
|
61
|
-
cursor: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, import("../types/data").
|
|
62
|
-
}> & import("../types/mark").LinkableMarkProps<import("../types/data").
|
|
63
|
-
data: import("../types/data").
|
|
64
|
-
x: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
65
|
-
y: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
66
|
-
r?: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
67
|
-
symbol?: import("../types/channel").ChannelAccessor<import("../types/data").
|
|
61
|
+
cursor: import("../types/index.js").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types/data").RawValue>>;
|
|
62
|
+
}> & import("../types/mark").LinkableMarkProps<Record<string | symbol, import("../types/data").RawValue>> & {
|
|
63
|
+
data: Record<string | symbol, import("../types/data").RawValue>[];
|
|
64
|
+
x: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
65
|
+
y: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
66
|
+
r?: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>>;
|
|
67
|
+
symbol?: import("../types/channel").ChannelAccessor<Record<string | symbol, import("../types/data").RawValue>> | import("svelte").Snippet<[number, string]>;
|
|
68
68
|
canvas?: boolean;
|
|
69
|
-
dotClass?: import("../types/index.js").ConstantAccessor<string, import("../types/data").
|
|
69
|
+
dotClass?: import("../types/index.js").ConstantAccessor<string, Record<string | symbol, import("../types/data").RawValue>>;
|
|
70
70
|
}, "x" | "data"> & {
|
|
71
71
|
data: Datum[];
|
|
72
72
|
};
|
package/dist/marks/Frame.svelte
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
stroke?: string;
|
|
12
12
|
fillOpacity?: number;
|
|
13
13
|
strokeOpacity?: number;
|
|
14
|
+
opacity?: number;
|
|
14
15
|
automatic?: boolean;
|
|
15
16
|
inset?: number;
|
|
16
17
|
insetLeft?: number;
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
} from '../types/index.js';
|
|
30
31
|
import type { BaseMarkProps } from '../types/index.js';
|
|
31
32
|
import RectPath from './helpers/RectPath.svelte';
|
|
33
|
+
import { resolveProp } from '../helpers/resolve';
|
|
32
34
|
|
|
33
35
|
let markProps: FrameMarkProps = $props();
|
|
34
36
|
|
|
@@ -46,6 +48,7 @@
|
|
|
46
48
|
class: className,
|
|
47
49
|
fill,
|
|
48
50
|
stroke,
|
|
51
|
+
opacity,
|
|
49
52
|
fillOpacity,
|
|
50
53
|
strokeOpacity,
|
|
51
54
|
...options
|
|
@@ -54,6 +57,9 @@
|
|
|
54
57
|
...markProps
|
|
55
58
|
});
|
|
56
59
|
|
|
60
|
+
const dx = $derived(resolveProp(options.dx, null, 0) || 0);
|
|
61
|
+
const dy = $derived(resolveProp(options.dy, null, 0) || 0);
|
|
62
|
+
|
|
57
63
|
const { getPlotState } = getContext<PlotContext>('svelteplot');
|
|
58
64
|
const plot = $derived(getPlotState());
|
|
59
65
|
</script>
|
|
@@ -62,13 +68,13 @@
|
|
|
62
68
|
{#snippet children({ usedScales })}
|
|
63
69
|
<RectPath
|
|
64
70
|
class={className}
|
|
65
|
-
datum={{ fill, stroke, fillOpacity, strokeOpacity, datum: {}, valid: true }}
|
|
66
|
-
x={plot.options.marginLeft}
|
|
67
|
-
y={plot.options.marginTop}
|
|
71
|
+
datum={{ fill, stroke, fillOpacity, strokeOpacity, opacity, datum: {}, valid: true }}
|
|
72
|
+
x={plot.options.marginLeft + dx}
|
|
73
|
+
y={plot.options.marginTop + dy}
|
|
68
74
|
width={plot.facetWidth}
|
|
69
75
|
height={plot.facetHeight}
|
|
70
76
|
{usedScales}
|
|
71
77
|
fallbackStyle="stroke"
|
|
72
|
-
options={{ ...options, fill, stroke, fillOpacity, strokeOpacity }} />
|
|
78
|
+
options={{ ...options, fill, stroke, fillOpacity, opacity, strokeOpacity }} />
|
|
73
79
|
{/snippet}
|
|
74
80
|
</Mark>
|
|
@@ -14,7 +14,7 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
14
14
|
sort: {
|
|
15
15
|
channel: string;
|
|
16
16
|
order?: "ascending" | "descending";
|
|
17
|
-
} | ((a: RawValue, b: RawValue) => number) | ConstantAccessor<RawValue, Datum>;
|
|
17
|
+
} | ((a: import("../types/data.js").RawValue, b: import("../types/data.js").RawValue) => number) | ConstantAccessor<import("../types/data.js").RawValue, Datum>;
|
|
18
18
|
stroke: ChannelAccessor<Datum>;
|
|
19
19
|
strokeWidth: ConstantAccessor<number, Datum>;
|
|
20
20
|
strokeOpacity: ConstantAccessor<number, Datum>;
|
|
@@ -71,7 +71,7 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
71
71
|
outlineStrokeOpacity?: number;
|
|
72
72
|
curve?: CurveName | CurveFactory | "auto";
|
|
73
73
|
tension?: number;
|
|
74
|
-
sort?: ConstantAccessor<RawValue,
|
|
74
|
+
sort?: ConstantAccessor<RawValue, Datum_1> | {
|
|
75
75
|
channel: "stroke" | "fill";
|
|
76
76
|
};
|
|
77
77
|
text?: ConstantAccessor<string, Datum>;
|
|
@@ -1,32 +1,33 @@
|
|
|
1
|
+
import { recordizeX } from '../index.js';
|
|
1
2
|
import type { DataRow } from '../index.js';
|
|
2
3
|
declare class __sveltets_Render<Datum extends DataRow> {
|
|
3
4
|
props(): Omit<import("../types").MarkerOptions & Partial<{
|
|
4
|
-
filter?: import("../types").ConstantAccessor<boolean, import("../types").
|
|
5
|
+
filter?: import("../types").ConstantAccessor<boolean, Record<string | symbol, import("../types").RawValue>>;
|
|
5
6
|
facet?: "auto" | "include" | "exclude";
|
|
6
|
-
fx: import("../types").ChannelAccessor<import("../types").
|
|
7
|
-
fy: import("../types").ChannelAccessor<import("../types").
|
|
8
|
-
dx: import("../types").ConstantAccessor<number, import("../types").
|
|
9
|
-
dy: import("../types").ConstantAccessor<number, import("../types").
|
|
10
|
-
fill: import("../types").ChannelAccessor<import("../types").
|
|
11
|
-
fillOpacity: import("../types").ConstantAccessor<number, import("../types").
|
|
7
|
+
fx: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
8
|
+
fy: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
9
|
+
dx: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
10
|
+
dy: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
11
|
+
fill: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
12
|
+
fillOpacity: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
12
13
|
sort: {
|
|
13
14
|
channel: string;
|
|
14
15
|
order?: "ascending" | "descending";
|
|
15
|
-
} | ((a: import("../types").RawValue, b: import("../types").RawValue) => number) | import("../types").ConstantAccessor<import("../types").RawValue, import("../types").
|
|
16
|
-
stroke: import("../types").ChannelAccessor<import("../types").
|
|
17
|
-
strokeWidth: import("../types").ConstantAccessor<number, import("../types").
|
|
18
|
-
strokeOpacity: import("../types").ConstantAccessor<number, import("../types").
|
|
19
|
-
strokeLinejoin: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinejoin, import("../types").
|
|
20
|
-
strokeLinecap: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinecap, import("../types").
|
|
21
|
-
strokeMiterlimit: import("../types").ConstantAccessor<number, import("../types").
|
|
22
|
-
opacity: import("../types").ChannelAccessor<import("../types").
|
|
23
|
-
strokeDasharray: import("../types").ConstantAccessor<string, import("../types").
|
|
24
|
-
strokeDashoffset: import("../types").ConstantAccessor<number, import("../types").
|
|
25
|
-
mixBlendMode: import("../types").ConstantAccessor<import("csstype").Property.MixBlendMode, import("../types").
|
|
16
|
+
} | ((a: import("../types").RawValue, b: import("../types").RawValue) => number) | import("../types").ConstantAccessor<import("../types").RawValue, Record<string | symbol, import("../types").RawValue>>;
|
|
17
|
+
stroke: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
18
|
+
strokeWidth: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
19
|
+
strokeOpacity: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
20
|
+
strokeLinejoin: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinejoin, Record<string | symbol, import("../types").RawValue>>;
|
|
21
|
+
strokeLinecap: import("../types").ConstantAccessor<import("csstype").Property.StrokeLinecap, Record<string | symbol, import("../types").RawValue>>;
|
|
22
|
+
strokeMiterlimit: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
23
|
+
opacity: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
24
|
+
strokeDasharray: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
25
|
+
strokeDashoffset: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
26
|
+
mixBlendMode: import("../types").ConstantAccessor<import("csstype").Property.MixBlendMode, Record<string | symbol, import("../types").RawValue>>;
|
|
26
27
|
clipPath: string;
|
|
27
|
-
imageFilter: import("../types").ConstantAccessor<string, import("../types").
|
|
28
|
-
shapeRendering: import("../types").ConstantAccessor<import("csstype").Property.ShapeRendering, import("../types").
|
|
29
|
-
paintOrder: import("../types").ConstantAccessor<string, import("../types").
|
|
28
|
+
imageFilter: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
29
|
+
shapeRendering: import("../types").ConstantAccessor<import("csstype").Property.ShapeRendering, Record<string | symbol, import("../types").RawValue>>;
|
|
30
|
+
paintOrder: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
30
31
|
onclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
31
32
|
ondblclick?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
32
33
|
onmouseup?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
@@ -58,26 +59,26 @@ declare class __sveltets_Render<Datum extends DataRow> {
|
|
|
58
59
|
oncontextmenu?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
59
60
|
onwheel?: import("svelte/elements").MouseEventHandler<SVGPathElement>;
|
|
60
61
|
class: string | null;
|
|
61
|
-
cursor: import("../types").ConstantAccessor<import("csstype").Property.Cursor, import("../types").
|
|
62
|
+
cursor: import("../types").ConstantAccessor<import("csstype").Property.Cursor, Record<string | symbol, import("../types").RawValue>>;
|
|
62
63
|
}> & {
|
|
63
|
-
data?: import("../types").
|
|
64
|
-
x?: import("../types").ChannelAccessor<import("../types").
|
|
65
|
-
y?: import("../types").ChannelAccessor<import("../types").
|
|
66
|
-
z?: import("../types").ChannelAccessor<import("../types").
|
|
64
|
+
data?: Record<string | symbol, import("../types").RawValue>[] | undefined;
|
|
65
|
+
x?: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
66
|
+
y?: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
67
|
+
z?: import("../types").ChannelAccessor<Record<string | symbol, import("../types").RawValue>>;
|
|
67
68
|
outlineStroke?: string;
|
|
68
69
|
outlineStrokeWidth?: number;
|
|
69
70
|
outlineStrokeOpacity?: number;
|
|
70
71
|
curve?: import("../types").CurveName | import("d3-shape").CurveFactory | "auto";
|
|
71
72
|
tension?: number;
|
|
72
|
-
sort?: import("../types").ConstantAccessor<
|
|
73
|
+
sort?: import("../types").ConstantAccessor<recordizeX, Datum_1> | {
|
|
73
74
|
channel: "stroke" | "fill";
|
|
74
75
|
};
|
|
75
|
-
text?: import("../types").ConstantAccessor<string, import("../types").
|
|
76
|
-
textFill?: import("../types").ConstantAccessor<string, import("../types").
|
|
77
|
-
textStroke?: import("../types").ConstantAccessor<string, import("../types").
|
|
78
|
-
textStartOffset?: import("../types").ConstantAccessor<string, import("../types").
|
|
79
|
-
textStrokeWidth?: import("../types").ConstantAccessor<number, import("../types").
|
|
80
|
-
lineClass?: import("../types").ConstantAccessor<string, import("../types").
|
|
76
|
+
text?: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
77
|
+
textFill?: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
78
|
+
textStroke?: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
79
|
+
textStartOffset?: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
80
|
+
textStrokeWidth?: import("../types").ConstantAccessor<number, Record<string | symbol, import("../types").RawValue>>;
|
|
81
|
+
lineClass?: import("../types").ConstantAccessor<string, Record<string | symbol, import("../types").RawValue>>;
|
|
81
82
|
canvas?: boolean;
|
|
82
83
|
}, "y" | "data"> & {
|
|
83
84
|
data: Datum[];
|