@wick-charts/react 0.3.3 → 0.3.5
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/README.md +21 -164
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +262 -67
- package/dist/index.js +3025 -2721
- package/package.json +2 -2
- package/src/ChartContainer.tsx +49 -1
- package/src/index.ts +1 -0
- package/src/ui/TimeAxis.tsx +6 -3
- package/src/ui/YAxis.tsx +4 -2
- package/src/ui/axisFade.ts +23 -0
package/dist/index.d.ts
CHANGED
|
@@ -6,39 +6,67 @@ import { ReactNode } from 'react';
|
|
|
6
6
|
export declare const andromeda: ThemePreset;
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* Chart-level animation configuration.
|
|
10
|
-
*
|
|
9
|
+
* Chart-level animation configuration. Two independent domains so per-series
|
|
10
|
+
* defaults can't bleed into viewport-interaction timings.
|
|
11
11
|
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* These values act as defaults for each series. Per-series options always
|
|
15
|
-
* win unless the chart-level category is explicitly `false`, in which case
|
|
16
|
-
* the whole category is forced off.
|
|
12
|
+
* **Two layers — chart-level vs per-series.** The same data-animation knobs
|
|
13
|
+
* live on both layers; remember which is which:
|
|
17
14
|
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
15
|
+
* | Field | Chart-level (here) | Per-series option |
|
|
16
|
+
* | ----- | ------------------ | ----------------- |
|
|
17
|
+
* | Entry duration | {@link AnimationsConfig.points}`.enterMs` | `<XSeries options={{ entryMs }}>` (canonical name; `enterMs` is a `@deprecated` alias) |
|
|
18
|
+
* | Live smoothing | `points.smoothMs` | `options={{ smoothMs }}` |
|
|
19
|
+
* | Line pulse period | `points.pulseMs` | `<LineSeries options={{ pulseMs }}>` |
|
|
20
20
|
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
21
|
+
* Resolution: per-series option **wins** (it's the override). The chart-
|
|
22
|
+
* level field acts as the default for every series that didn't set its own
|
|
23
|
+
* override — *except* when the chart-level category is explicitly `false`,
|
|
24
|
+
* which is a hard disable that overrides per-series too.
|
|
25
|
+
*
|
|
26
|
+
* - `points` — applied to data: entrance tween, live-tracking smoothing of
|
|
27
|
+
* the last candle/bar/line value, line pulse cadence.
|
|
28
|
+
* - `viewport` — applied to viewport interactions: post-gesture rebound,
|
|
29
|
+
* Y-axis range chase, optional per-event ease for pan/zoom. Has no
|
|
30
|
+
* per-series equivalent — these are chart-level only.
|
|
31
|
+
*
|
|
32
|
+
* All settling animations share a 250 ms default so the X re-fit, Y range
|
|
33
|
+
* update, and last-bar live-track all settle on the same frame on a
|
|
34
|
+
* streaming tick. Pulse cycle period (600 ms) and `inputResponseMs` (0,
|
|
35
|
+
* opt-in) keep their own values.
|
|
25
36
|
*/
|
|
26
|
-
declare interface AnimationsConfig {
|
|
37
|
+
export declare interface AnimationsConfig {
|
|
27
38
|
/**
|
|
28
39
|
* Data-series animations. `false` disables every point animation (entrance,
|
|
29
|
-
* live-smoothing, pulse) across every series
|
|
30
|
-
*
|
|
40
|
+
* live-smoothing, pulse) across every series — overrides any per-series
|
|
41
|
+
* option set on the same fields. An object overrides individual categories;
|
|
42
|
+
* omitted fields fall back to the built-in defaults.
|
|
43
|
+
*
|
|
44
|
+
* Per-series options (`<LineSeries options={{ entryMs, smoothMs, pulseMs }}>`)
|
|
45
|
+
* win over chart-level numeric values. The chart-level field becomes the
|
|
46
|
+
* default for series that don't set their own.
|
|
31
47
|
*/
|
|
32
48
|
points?: false | {
|
|
33
|
-
/**
|
|
49
|
+
/**
|
|
50
|
+
* Per-point entrance duration (ms). Default: 250.
|
|
51
|
+
* Per-series equivalent: `<XSeries options={{ entryMs }}>` (note the
|
|
52
|
+
* `y` — chart-level uses `enterMs`, per-series uses `entryMs` for
|
|
53
|
+
* historical reasons; both refer to the same animation). `false` /
|
|
54
|
+
* `0` disables.
|
|
55
|
+
*/
|
|
34
56
|
enterMs?: AnimationTime;
|
|
35
57
|
/**
|
|
36
|
-
*
|
|
37
|
-
* `
|
|
38
|
-
*
|
|
58
|
+
* Live-value chase duration (ms) for the displayed last point on
|
|
59
|
+
* `updateData` ticks. Animator-driven cubic ease — after this many ms
|
|
60
|
+
* with no new updates, the displayed value reaches exactly the
|
|
61
|
+
* actual last value. Default: 250. Per-series equivalent:
|
|
62
|
+
* `options={{ smoothMs }}`. `false` / `0` snaps.
|
|
39
63
|
*/
|
|
40
64
|
smoothMs?: AnimationTime;
|
|
41
|
-
/**
|
|
65
|
+
/**
|
|
66
|
+
* Pulse cycle period (ms) for the line last-point halo — periodic,
|
|
67
|
+
* not a one-shot transition. Default: 600. Per-series equivalent:
|
|
68
|
+
* `<LineSeries options={{ pulseMs }}>`. `false` / `0` disables.
|
|
69
|
+
*/
|
|
42
70
|
pulseMs?: AnimationTime;
|
|
43
71
|
};
|
|
44
72
|
/**
|
|
@@ -49,15 +77,33 @@ declare interface AnimationsConfig {
|
|
|
49
77
|
/** Rebound (snap-back) duration after pan/zoom overshoot (ms). Default: 350. */
|
|
50
78
|
reboundMs?: AnimationTime;
|
|
51
79
|
/**
|
|
52
|
-
* Y-axis range transition
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
*
|
|
80
|
+
* Y-axis range transition duration in wall-clock milliseconds. The Y
|
|
81
|
+
* min and max each ride their own {@link Animator} that retargets on
|
|
82
|
+
* data updates and eases toward the new bound over this many ms.
|
|
83
|
+
* Default `250` (shares the lockstep-arrival budget with viewport and
|
|
84
|
+
* live-track). Inward contraction always eases. Outward expansion
|
|
85
|
+
* eases when the per-point entrance is enabled (the entering candle's
|
|
86
|
+
* fade masks the brief overshoot); when entrance is hard-disabled
|
|
87
|
+
* (`points.enterMs === 0`), Y bounds snap outward to keep new
|
|
88
|
+
* highs/lows from clipping at the canvas edge. `false` / `0` snaps
|
|
89
|
+
* the Y range instantly on every update.
|
|
59
90
|
*/
|
|
60
91
|
yAxisMs?: AnimationTime;
|
|
92
|
+
/**
|
|
93
|
+
* Per-event ease applied to user pan/zoom commits. Logical state
|
|
94
|
+
* advances synchronously (gesture math, edge detection, autoscroll
|
|
95
|
+
* all read the committed target); the visual range eases over this
|
|
96
|
+
* duration so back-to-back wheel/trackpad events interpolate
|
|
97
|
+
* smoothly through the same animator.
|
|
98
|
+
*
|
|
99
|
+
* Default `0` (instant-apply, matches the long-standing pre-Phase-5
|
|
100
|
+
* behaviour). Opt in via `inputResponseMs: 60` for an eased pan/zoom
|
|
101
|
+
* feel — the default is conservative because the animated visual
|
|
102
|
+
* range diverges from the committed target until the ease completes,
|
|
103
|
+
* and existing consumers reading `chart.getVisibleRange()`
|
|
104
|
+
* synchronously after a wheel/pan expect the new value.
|
|
105
|
+
*/
|
|
106
|
+
inputResponseMs?: AnimationTime;
|
|
61
107
|
};
|
|
62
108
|
}
|
|
63
109
|
|
|
@@ -151,12 +197,24 @@ export declare interface BarSeriesOptions {
|
|
|
151
197
|
/** @deprecated Use {@link entryAnimation} instead. */
|
|
152
198
|
enterAnimation?: BarEntryAnimation;
|
|
153
199
|
/**
|
|
154
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
200
|
+
* Per-bar entrance duration in milliseconds. Default: `250`.
|
|
201
|
+
*
|
|
202
|
+
* ```
|
|
203
|
+
* // Override for one series:
|
|
204
|
+
* <BarSeries options={{ entryMs: 600 }} data={data} />
|
|
205
|
+
*
|
|
206
|
+
* // Or set the default for every series at once:
|
|
207
|
+
* <ChartContainer animations={{ points: { enterMs: 600 } }}>
|
|
208
|
+
* <BarSeries data={data} />
|
|
209
|
+
* </ChartContainer>
|
|
210
|
+
* ```
|
|
211
|
+
*
|
|
212
|
+
* Note: chart-level uses `enterMs`, per-series uses `entryMs` — same
|
|
213
|
+
* animation, two names for historical reasons.
|
|
157
214
|
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
215
|
+
* `false` or `0` disables the entrance (equivalent to
|
|
216
|
+
* `entryAnimation: 'none'`). A chart-level `animations.points: false` is a
|
|
217
|
+
* hard disable that wins over this field.
|
|
160
218
|
*
|
|
161
219
|
* @see BarSeriesOptions.entryAnimation
|
|
162
220
|
*/
|
|
@@ -164,13 +222,22 @@ export declare interface BarSeriesOptions {
|
|
|
164
222
|
/** @deprecated Use {@link entryMs} instead. */
|
|
165
223
|
enterMs?: number | false;
|
|
166
224
|
/**
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
* target (no smoothing). Omit to inherit from
|
|
170
|
-
* {@link AnimationsConfig.points}.`smoothMs` (default 70 ms).
|
|
225
|
+
* How long the displayed bar value takes to catch up to the actual one
|
|
226
|
+
* on every `updateLastPoint`. Default: `250` ms.
|
|
171
227
|
*
|
|
172
|
-
*
|
|
173
|
-
*
|
|
228
|
+
* ```
|
|
229
|
+
* // Per-series override:
|
|
230
|
+
* <BarSeries options={{ smoothMs: 100 }} data={data} />
|
|
231
|
+
*
|
|
232
|
+
* // Chart-level default:
|
|
233
|
+
* <ChartContainer animations={{ points: { smoothMs: 100 } }}>
|
|
234
|
+
* <BarSeries data={data} />
|
|
235
|
+
* </ChartContainer>
|
|
236
|
+
* ```
|
|
237
|
+
*
|
|
238
|
+
* `0` or `false` snaps the displayed value to the target on every tick
|
|
239
|
+
* (no smoothing). A chart-level `animations.points: false` is a hard
|
|
240
|
+
* disable that wins over this field.
|
|
174
241
|
*/
|
|
175
242
|
smoothMs?: number | false;
|
|
176
243
|
}
|
|
@@ -277,12 +344,24 @@ export declare interface CandlestickSeriesOptions {
|
|
|
277
344
|
/** @deprecated Use {@link entryAnimation} instead. */
|
|
278
345
|
enterAnimation?: CandlestickEntryAnimation;
|
|
279
346
|
/**
|
|
280
|
-
*
|
|
281
|
-
*
|
|
282
|
-
*
|
|
347
|
+
* Per-candle entrance duration in milliseconds. Default: `250`.
|
|
348
|
+
*
|
|
349
|
+
* ```
|
|
350
|
+
* // Override for one series:
|
|
351
|
+
* <CandlestickSeries options={{ entryMs: 600 }} data={data} />
|
|
283
352
|
*
|
|
284
|
-
*
|
|
285
|
-
*
|
|
353
|
+
* // Or set the default for every series at once:
|
|
354
|
+
* <ChartContainer animations={{ points: { enterMs: 600 } }}>
|
|
355
|
+
* <CandlestickSeries data={data} />
|
|
356
|
+
* </ChartContainer>
|
|
357
|
+
* ```
|
|
358
|
+
*
|
|
359
|
+
* Note: chart-level uses `enterMs`, per-series uses `entryMs` — same
|
|
360
|
+
* animation, two names for historical reasons.
|
|
361
|
+
*
|
|
362
|
+
* `false` or `0` disables the entrance (equivalent to
|
|
363
|
+
* `entryAnimation: 'none'`). A chart-level `animations.points: false` is a
|
|
364
|
+
* hard disable that wins over this field.
|
|
286
365
|
*
|
|
287
366
|
* @see CandlestickSeriesOptions.entryAnimation
|
|
288
367
|
*/
|
|
@@ -290,13 +369,22 @@ export declare interface CandlestickSeriesOptions {
|
|
|
290
369
|
/** @deprecated Use {@link entryMs} instead. */
|
|
291
370
|
enterMs?: number | false;
|
|
292
371
|
/**
|
|
293
|
-
*
|
|
294
|
-
*
|
|
295
|
-
*
|
|
296
|
-
*
|
|
372
|
+
* How long the displayed OHLC takes to catch up to the actual last value
|
|
373
|
+
* on every `updateLastPoint`. Default: `250` ms.
|
|
374
|
+
*
|
|
375
|
+
* ```
|
|
376
|
+
* // Per-series override:
|
|
377
|
+
* <CandlestickSeries options={{ smoothMs: 100 }} data={data} />
|
|
297
378
|
*
|
|
298
|
-
*
|
|
299
|
-
*
|
|
379
|
+
* // Chart-level default:
|
|
380
|
+
* <ChartContainer animations={{ points: { smoothMs: 100 } }}>
|
|
381
|
+
* <CandlestickSeries data={data} />
|
|
382
|
+
* </ChartContainer>
|
|
383
|
+
* ```
|
|
384
|
+
*
|
|
385
|
+
* `0` or `false` snaps the displayed value to the target on every tick
|
|
386
|
+
* (no smoothing). A chart-level `animations.points: false` is a hard
|
|
387
|
+
* disable that wins over this field.
|
|
300
388
|
*/
|
|
301
389
|
smoothMs?: number | false;
|
|
302
390
|
}
|
|
@@ -324,7 +412,7 @@ export declare const catppuccin: ThemePreset;
|
|
|
324
412
|
* - Legend — flex sibling at the bottom (or right, when `position="right"`), so its height is
|
|
325
413
|
* reserved by browser layout.
|
|
326
414
|
*/
|
|
327
|
-
export declare function ChartContainer({ children, theme, axis, padding, gradient, interactive, grid, headerLayout, perf, style, className, }: ChartContainerProps): JSX_2.Element;
|
|
415
|
+
export declare function ChartContainer({ children, theme, axis, padding, gradient, interactive, grid, headerLayout, perf, animations, style, className, }: ChartContainerProps): JSX_2.Element;
|
|
328
416
|
|
|
329
417
|
/** Props for the {@link ChartContainer} component. */
|
|
330
418
|
declare interface ChartContainerProps {
|
|
@@ -381,6 +469,36 @@ declare interface ChartContainerProps {
|
|
|
381
469
|
* the title. The chart background still spans the full container.
|
|
382
470
|
*/
|
|
383
471
|
headerLayout?: 'overlay' | 'inline';
|
|
472
|
+
/**
|
|
473
|
+
* Chart-level animation configuration. See {@link AnimationsConfig} for the
|
|
474
|
+
* full shape.
|
|
475
|
+
*
|
|
476
|
+
* Two layers — remember which is which:
|
|
477
|
+
*
|
|
478
|
+
* - **Chart-level (this prop)** — `animations.points.{enterMs, smoothMs,
|
|
479
|
+
* pulseMs}` and `animations.viewport.{reboundMs, yAxisMs,
|
|
480
|
+
* inputResponseMs}`. Acts as the default for every series.
|
|
481
|
+
* - **Per-series** — `<LineSeries options={{ entryMs, smoothMs, pulseMs }}>`
|
|
482
|
+
* (and the analogous CandlestickSeries / BarSeries options). Overrides
|
|
483
|
+
* the chart-level default for that one series. Note the spelling:
|
|
484
|
+
* `entryMs` per-series, `enterMs` chart-level — historical artefact,
|
|
485
|
+
* both refer to the same animation.
|
|
486
|
+
*
|
|
487
|
+
* Resolution: per-series option wins over chart-level numeric value.
|
|
488
|
+
* Chart-level wins only when its category is explicitly `false` — that's
|
|
489
|
+
* a hard disable that overrides per-series too.
|
|
490
|
+
*
|
|
491
|
+
* Shorthands:
|
|
492
|
+
* - `true` / omitted — built-in defaults (every settling animation 250 ms,
|
|
493
|
+
* pulse cycle 600 ms, input ease 0 / off).
|
|
494
|
+
* - `false` — disables every animation category.
|
|
495
|
+
* - `{ points: false }` / `{ viewport: false }` — disables a category.
|
|
496
|
+
*
|
|
497
|
+
* Runtime updates: changing this prop after mount calls
|
|
498
|
+
* `chart.setAnimations(...)` so the new durations take effect on the next
|
|
499
|
+
* animation / render.
|
|
500
|
+
*/
|
|
501
|
+
animations?: boolean | AnimationsConfig;
|
|
384
502
|
/**
|
|
385
503
|
* Enable runtime performance instrumentation. Off by default.
|
|
386
504
|
*
|
|
@@ -606,6 +724,25 @@ export declare class ChartInstance extends EventEmitter<ChartEvents> {
|
|
|
606
724
|
* a wrapper re-applies padding reactively (e.g. in response to a Title /
|
|
607
725
|
* InfoBar ResizeObserver).
|
|
608
726
|
*/
|
|
727
|
+
/**
|
|
728
|
+
* Replace the chart-level animation configuration at runtime. Updates the
|
|
729
|
+
* resolved durations and propagates them to every dependent subsystem:
|
|
730
|
+
*
|
|
731
|
+
* - viewport: reboundMs (next rebound), inputResponseMs (next pan/zoom).
|
|
732
|
+
* - per-frame: yAxisMs (next render).
|
|
733
|
+
* - existing series: only the **hard-disable** signal (0 / false) is pushed
|
|
734
|
+
* into renderers — that's the documented contract on
|
|
735
|
+
* {@link AnimationsConfig.points}, "chart-level `false` wins over per-
|
|
736
|
+
* series". Numeric chart-level changes update the default for *new*
|
|
737
|
+
* series but leave existing per-series overrides intact, which avoids
|
|
738
|
+
* silently clobbering custom values on every prop update from a React
|
|
739
|
+
* wrapper.
|
|
740
|
+
*
|
|
741
|
+
* In-flight animations are NOT cancelled — the new durations apply to the
|
|
742
|
+
* next animation that fires. To force-snap the current animation, call
|
|
743
|
+
* the relevant API explicitly (e.g. `setRange`) afterwards.
|
|
744
|
+
*/
|
|
745
|
+
setAnimations(animations: ChartOptions['animations']): void;
|
|
609
746
|
setPadding(padding: ChartOptions['padding']): void;
|
|
610
747
|
/** Show or hide the background grid. Takes effect on the next render frame. */
|
|
611
748
|
setGrid(grid: {
|
|
@@ -634,6 +771,17 @@ export declare class ChartInstance extends EventEmitter<ChartEvents> {
|
|
|
634
771
|
private getDataBounds;
|
|
635
772
|
private onDataChanged;
|
|
636
773
|
private updateDataInterval;
|
|
774
|
+
/**
|
|
775
|
+
* Sample data inside `targetVisible` and return the unbounded [min, max] of
|
|
776
|
+
* the visible series, or `null` when nothing is in view. Bounds are NOT
|
|
777
|
+
* applied here — the caller composes them via {@link resolveBound}.
|
|
778
|
+
*
|
|
779
|
+
* `targetVisible` is the X *destination* (logicalRange), not the animating
|
|
780
|
+
* current. Sampling against a moving X would make Y chase a definition of
|
|
781
|
+
* "in view" that shifts every frame; passing the destination explicitly
|
|
782
|
+
* keeps Y on a stable target so X and Y converge together.
|
|
783
|
+
*/
|
|
784
|
+
private computeTargetYRange;
|
|
637
785
|
private updateYRange;
|
|
638
786
|
/** Resolve an {@link AxisBound} to a concrete numeric value. */
|
|
639
787
|
private resolveBound;
|
|
@@ -941,6 +1089,13 @@ export declare interface CrosshairPosition {
|
|
|
941
1089
|
y: number;
|
|
942
1090
|
}
|
|
943
1091
|
|
|
1092
|
+
/**
|
|
1093
|
+
* @deprecated Use a named preset instead — `catppuccin.theme` is the new
|
|
1094
|
+
* default dark palette, and `dracula`, `nightOwl`, `oneDarkPro`, `gruvbox`,
|
|
1095
|
+
* `monokaiPro`, `materialPalenight`, or `panda` cover the rest of the
|
|
1096
|
+
* dark spectrum. `darkTheme` is kept as an alias for the previous default
|
|
1097
|
+
* and will be removed in a future major release.
|
|
1098
|
+
*/
|
|
944
1099
|
export declare const darkTheme: ChartTheme;
|
|
945
1100
|
|
|
946
1101
|
export declare function detectInterval(times: number[]): number;
|
|
@@ -1142,6 +1297,13 @@ declare interface LegendRenderContext {
|
|
|
1142
1297
|
|
|
1143
1298
|
export declare const lightPink: ThemePreset;
|
|
1144
1299
|
|
|
1300
|
+
/**
|
|
1301
|
+
* @deprecated Use a named light preset instead — `quietLight`, `githubLight`,
|
|
1302
|
+
* `solarizedLight`, `minimalLight`, `peachCream`, `sandDune`, `lightPink`,
|
|
1303
|
+
* `lavenderMist`, `mintBreeze`, `rosePineDawn`, or `handwritten`. `lightTheme`
|
|
1304
|
+
* is kept as an alias for the previous default and will be removed in a
|
|
1305
|
+
* future major release.
|
|
1306
|
+
*/
|
|
1145
1307
|
export declare const lightTheme: ChartTheme;
|
|
1146
1308
|
|
|
1147
1309
|
/** @deprecated Use {@link TimePoint} instead. */
|
|
@@ -1175,11 +1337,23 @@ export declare interface LineSeriesOptions {
|
|
|
1175
1337
|
*/
|
|
1176
1338
|
pulse: boolean;
|
|
1177
1339
|
/**
|
|
1178
|
-
*
|
|
1179
|
-
*
|
|
1180
|
-
*
|
|
1181
|
-
*
|
|
1182
|
-
*
|
|
1340
|
+
* Period of one halo pulse cycle in milliseconds. Continuous loop, not a
|
|
1341
|
+
* one-shot — short values pulse fast, long values pulse slowly. Default:
|
|
1342
|
+
* `600` (≈ 1.7 Hz, a calm "breathing" rhythm).
|
|
1343
|
+
*
|
|
1344
|
+
* ```
|
|
1345
|
+
* // Per-series override:
|
|
1346
|
+
* <LineSeries options={{ pulseMs: 1200 }} data={data} />
|
|
1347
|
+
*
|
|
1348
|
+
* // Chart-level default:
|
|
1349
|
+
* <ChartContainer animations={{ points: { pulseMs: 1200 } }}>
|
|
1350
|
+
* <LineSeries data={data} />
|
|
1351
|
+
* </ChartContainer>
|
|
1352
|
+
* ```
|
|
1353
|
+
*
|
|
1354
|
+
* `false` or `0` turns the halo off entirely (drawing and animation loop).
|
|
1355
|
+
* A chart-level `animations.points: false` is a hard disable that wins
|
|
1356
|
+
* over this field.
|
|
1183
1357
|
*/
|
|
1184
1358
|
pulseMs?: number | false;
|
|
1185
1359
|
/** Stacking mode. Default: 'off'. */
|
|
@@ -1195,12 +1369,24 @@ export declare interface LineSeriesOptions {
|
|
|
1195
1369
|
/** @deprecated Use {@link entryAnimation} instead. */
|
|
1196
1370
|
enterAnimation?: LineEntryAnimation;
|
|
1197
1371
|
/**
|
|
1198
|
-
*
|
|
1199
|
-
* per-point entrance (equivalent to `entryAnimation: 'none'`). Omit to
|
|
1200
|
-
* inherit from {@link AnimationsConfig.points}.`entryMs` (default 400).
|
|
1372
|
+
* Per-point entrance duration in milliseconds. Default: `250`.
|
|
1201
1373
|
*
|
|
1202
|
-
*
|
|
1203
|
-
*
|
|
1374
|
+
* ```
|
|
1375
|
+
* // Override for one series:
|
|
1376
|
+
* <LineSeries options={{ entryMs: 600 }} data={data} />
|
|
1377
|
+
*
|
|
1378
|
+
* // Or set the default for every series at once:
|
|
1379
|
+
* <ChartContainer animations={{ points: { enterMs: 600 } }}>
|
|
1380
|
+
* <LineSeries data={data} />
|
|
1381
|
+
* </ChartContainer>
|
|
1382
|
+
* ```
|
|
1383
|
+
*
|
|
1384
|
+
* Note: chart-level uses `enterMs`, per-series uses `entryMs` — same
|
|
1385
|
+
* animation, two names for historical reasons.
|
|
1386
|
+
*
|
|
1387
|
+
* `false` or `0` disables the entrance (equivalent to
|
|
1388
|
+
* `entryAnimation: 'none'`). A chart-level `animations.points: false` is a
|
|
1389
|
+
* hard disable that wins over this field.
|
|
1204
1390
|
*
|
|
1205
1391
|
* @see LineSeriesOptions.entryAnimation
|
|
1206
1392
|
*/
|
|
@@ -1208,13 +1394,22 @@ export declare interface LineSeriesOptions {
|
|
|
1208
1394
|
/** @deprecated Use {@link entryMs} instead. */
|
|
1209
1395
|
enterMs?: number | false;
|
|
1210
1396
|
/**
|
|
1211
|
-
*
|
|
1212
|
-
*
|
|
1213
|
-
*
|
|
1214
|
-
*
|
|
1397
|
+
* How long the displayed last value takes to catch up to the actual one
|
|
1398
|
+
* on every `updateLastPoint`. Default: `250` ms.
|
|
1399
|
+
*
|
|
1400
|
+
* ```
|
|
1401
|
+
* // Per-series override:
|
|
1402
|
+
* <LineSeries options={{ smoothMs: 100 }} data={data} />
|
|
1403
|
+
*
|
|
1404
|
+
* // Chart-level default:
|
|
1405
|
+
* <ChartContainer animations={{ points: { smoothMs: 100 } }}>
|
|
1406
|
+
* <LineSeries data={data} />
|
|
1407
|
+
* </ChartContainer>
|
|
1408
|
+
* ```
|
|
1215
1409
|
*
|
|
1216
|
-
*
|
|
1217
|
-
*
|
|
1410
|
+
* `0` or `false` snaps the displayed value to the target on every tick
|
|
1411
|
+
* (no smoothing). A chart-level `animations.points: false` is a hard
|
|
1412
|
+
* disable that wins over this field.
|
|
1218
1413
|
*/
|
|
1219
1414
|
smoothMs?: number | false;
|
|
1220
1415
|
}
|