@cascivo/charts 0.7.1 → 0.16.1
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/charts.css +1 -1
- package/dist/index.d.ts +132 -21
- package/dist/index.js +1503 -1471
- package/dist/node/index.js +1503 -1471
- package/package.json +3 -3
package/dist/charts.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@layer cascivo.component{.
|
|
1
|
+
@layer cascivo.component{._frame_1gm0a_2{flex:auto;min-block-size:0;inline-size:100%;min-inline-size:0;position:relative}._frame_1gm0a_2>svg{block-size:auto;max-block-size:100%;max-inline-size:100%}@media (prefers-reduced-motion:no-preference){._frame_1gm0a_2>svg{animation:_cascivo-chart-in_1gm0a_1 var(--cascivo-chart-anim-dur,.32s) var(--cascivo-chart-anim-ease,ease-out) both}@keyframes _cascivo-chart-in_1gm0a_1{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}._frame_1gm0a_2 svg :is(path,rect,circle,line)[data-series],._frame_1gm0a_2 svg path[data-link],._frame_1gm0a_2 svg path[data-depth],._frame_1gm0a_2 svg rect[data-day]{transition-property:var(--cascivo-chart-anim-props,opacity, fill, fill-opacity);transition-duration:var(--cascivo-chart-anim-dur,.24s);transition-timing-function:var(--cascivo-chart-anim-ease,ease)}._frame_1gm0a_2[data-no-anim]>svg{animation:none}._frame_1gm0a_2[data-no-anim] svg :is(path,rect,circle,line)[data-series],._frame_1gm0a_2[data-no-anim] svg path[data-link],._frame_1gm0a_2[data-no-anim] svg path[data-depth],._frame_1gm0a_2[data-no-anim] svg rect[data-day]{transition:none}}._fallback_1gm0a_78{clip-path:inset(50%);white-space:nowrap;block-size:1px;inline-size:1px;position:absolute;inset-inline-start:-9999px;overflow:hidden}._legend_1pign_2{gap:var(--cascivo-space-2);padding-block:var(--cascivo-space-2);flex-wrap:wrap;display:flex}._item_1pign_9{align-items:center;gap:var(--cascivo-space-1);padding:var(--cascivo-space-1) var(--cascivo-space-2);border:1px solid var(--cascivo-color-border);border-radius:var(--cascivo-radius-sm);cursor:pointer;font-size:var(--cascivo-text-sm);color:var(--cascivo-color-text);transition:opacity var(--cascivo-duration-150,.15s) ease;background:0 0;display:flex}._item_1pign_9[data-state=off]{opacity:.4}._swatch_1pign_27{border-radius:2px;flex-shrink:0;block-size:12px;inline-size:12px;display:inline-block}._meter_cns3q_2{inline-size:100%;min-inline-size:0}._svg_cns3q_9{block-size:auto;inline-size:100%;max-inline-size:100%;display:block}._label_cns3q_16{font-size:var(--cascivo-text-xs);color:var(--cascivo-color-foreground-muted);margin-block-start:var(--cascivo-space-1)}._gaugeLabel_cns3q_22{text-align:center;font-size:var(--cascivo-text-sm);color:var(--cascivo-color-foreground-muted)}._fill_cns3q_28{transform-origin:0;transition:transform .4s}@media (prefers-reduced-motion:reduce){._fill_cns3q_28{transition:none}}._kpi_nrb8p_7{gap:var(--cascivo-space-2);padding:var(--cascivo-kpi-padding,var(--cascivo-space-4));border-radius:var(--cascivo-radius-surface);border:1px solid var(--cascivo-color-border);background:var(--cascivo-color-surface);flex-direction:column;min-inline-size:0;display:flex}._head_nrb8p_19{justify-content:space-between;align-items:center;gap:var(--cascivo-space-2);min-inline-size:0;display:flex}._label_nrb8p_27{font-size:var(--cascivo-text-sm);color:var(--cascivo-color-foreground-muted);overflow-wrap:anywhere;min-inline-size:0}._valueRow_nrb8p_34{align-items:flex-end;gap:var(--cascivo-space-2);min-inline-size:0;display:flex}._value_nrb8p_34{font-size:var(--cascivo-text-2xl);font-weight:var(--cascivo-font-bold);line-height:var(--cascivo-leading-none);color:var(--cascivo-color-foreground);font-variant-numeric:tabular-nums}._delta_nrb8p_49{font-size:var(--cascivo-text-sm);font-weight:var(--cascivo-font-medium);white-space:nowrap;color:var(--cascivo-color-foreground-muted)}._delta_nrb8p_49[data-sentiment=good]{color:var(--cascivo-color-success-foreground)}._delta_nrb8p_49[data-sentiment=bad]{color:var(--cascivo-color-destructive-foreground)}}
|
|
2
2
|
/*$vite$:1*/
|
package/dist/index.d.ts
CHANGED
|
@@ -284,6 +284,20 @@ interface BarChartProps<Datum = {
|
|
|
284
284
|
* only; to plot multiple fields from one row, give each series its own `y`.
|
|
285
285
|
*/
|
|
286
286
|
y: (d: Datum) => number;
|
|
287
|
+
/**
|
|
288
|
+
* ⚠ **Not rendered as a visible heading.** This becomes the chart's accessible name
|
|
289
|
+
* (the SVG `<caption>` / `aria-label`), which is why it is required — a chart with no
|
|
290
|
+
* accessible name is unusable with a screen reader.
|
|
291
|
+
*
|
|
292
|
+
* For a visible heading, put a `CardTitle`/`Heading` above the chart. The prop name
|
|
293
|
+
* promises a heading and an adopter wrote one, saw nothing, and ended up with a
|
|
294
|
+
* redundant `CardTitle` on every chart anyway.
|
|
295
|
+
*
|
|
296
|
+
* It is NOT renamed to `ariaLabel` (the catalog's name for an invisible accessible name)
|
|
297
|
+
* because an alias would have to make both optional, which drops the compile-time
|
|
298
|
+
* guarantee that every chart has an accessible name. The requirement is worth more than
|
|
299
|
+
* the naming consistency; this warning is the compensation.
|
|
300
|
+
*/
|
|
287
301
|
title: string;
|
|
288
302
|
description?: string;
|
|
289
303
|
/**
|
|
@@ -898,8 +912,17 @@ interface ChartFrameProps {
|
|
|
898
912
|
* container (`max-inline-size: 100%`) so it can never overflow its card.
|
|
899
913
|
*/
|
|
900
914
|
width?: number | undefined;
|
|
901
|
-
/**
|
|
902
|
-
*
|
|
915
|
+
/**
|
|
916
|
+
* Height of the **plot area** in px — the SVG only. The title, description and legend
|
|
917
|
+
* render OUTSIDE it (the legend is a sibling of this frame), so the rendered block is
|
|
918
|
+
* taller than `height` by whatever chrome the chart shows. Sizing a card to `height`
|
|
919
|
+
* exactly is what clips a legend.
|
|
920
|
+
*
|
|
921
|
+
* **Omit it (the default) for a responsive chart.** Like `width`, height now tracks the
|
|
922
|
+
* container via `ResizeObserver`: in a parent with a definite block size the plot fills
|
|
923
|
+
* the space left over after the legend, and in an auto-height parent it falls back to
|
|
924
|
+
* 300px. Set it only to force a fixed aspect.
|
|
925
|
+
*/
|
|
903
926
|
height?: number | undefined;
|
|
904
927
|
fallback?: ReactNode;
|
|
905
928
|
children: (size: {
|
|
@@ -1038,19 +1061,38 @@ declare function leftMarginForLabels(leftAxisLabels: readonly string[], plain: b
|
|
|
1038
1061
|
*/
|
|
1039
1062
|
declare function rightMarginForLabels(options?: {
|
|
1040
1063
|
/** Labels of a right-hand value axis, if the chart has one. */rightAxisLabels?: readonly string[]; /** Labels of the bottom axis — only the last one's overhang matters. */
|
|
1041
|
-
bottomAxisLabels?: readonly string[];
|
|
1064
|
+
bottomAxisLabels?: readonly string[]; /** Whether the right axis also draws a rotated title outside its tick labels. */
|
|
1065
|
+
rightAxisTitle?: boolean;
|
|
1042
1066
|
plain?: boolean | undefined;
|
|
1043
1067
|
}): number;
|
|
1068
|
+
/**
|
|
1069
|
+
* Approximate block size (px) of one axis label at the 11px axis font — the line box
|
|
1070
|
+
* plus a little separation. What crowds labels stacked down a y-axis is their *height*,
|
|
1071
|
+
* not the length of the text.
|
|
1072
|
+
*/
|
|
1073
|
+
declare const AXIS_LINE_PX = 14;
|
|
1044
1074
|
/**
|
|
1045
1075
|
* Stride for a crowded categorical (band) axis: render every Nth label so they stop
|
|
1046
1076
|
* colliding (e.g. 14 `Jul 1`…`Jul 14` dates in a narrow chart). Returns `undefined`
|
|
1047
1077
|
* when every label fits — callers pass that straight to `Axis.labelEvery` (all shown).
|
|
1048
1078
|
* An explicit `xLabelEvery` from the caller always overrides this.
|
|
1049
1079
|
*
|
|
1080
|
+
* `direction` says which way the labels are laid out along the axis, and therefore which
|
|
1081
|
+
* dimension of the label competes for the band:
|
|
1082
|
+
*
|
|
1083
|
+
* - `'horizontal'` (a bottom category axis) — labels sit side by side, so the constraint
|
|
1084
|
+
* is text *width*, estimated from the character count.
|
|
1085
|
+
* - `'vertical'` (a horizontal bar chart's category axis, which runs down the y-axis) —
|
|
1086
|
+
* labels stack, so the constraint is line *height*, which is the same for every label.
|
|
1087
|
+
*
|
|
1088
|
+
* Measuring the vertical case against text width is the bug this parameter fixes: seven
|
|
1089
|
+
* categories down a 240px axis were strided away as "crowded" because one of them was
|
|
1090
|
+
* eight characters long, which is not a fact about vertical space at all.
|
|
1091
|
+
*
|
|
1050
1092
|
* `Axis` always draws the final label, and drops the strided label before it when the two
|
|
1051
1093
|
* would collide — so a stride that doesn't divide the domain evenly is safe.
|
|
1052
1094
|
*/
|
|
1053
|
-
declare function autoLabelStride(labels: readonly string[], axisLength: number): number | undefined;
|
|
1095
|
+
declare function autoLabelStride(labels: readonly string[], axisLength: number, direction?: 'horizontal' | 'vertical'): number | undefined;
|
|
1054
1096
|
/**
|
|
1055
1097
|
* Pure index-window math shared by the DataZoom slider and the in-plot wheel/drag
|
|
1056
1098
|
* zoom-pan. A "window" is an inclusive `[startIndex, endIndex]` over a series of
|
|
@@ -1133,6 +1175,21 @@ interface AxisProps {
|
|
|
1133
1175
|
* see `autoLabelStride`, which computes this for you. Pass explicitly only to override.
|
|
1134
1176
|
*/
|
|
1135
1177
|
labelEvery?: number | undefined;
|
|
1178
|
+
/**
|
|
1179
|
+
* Axis title, drawn outside the tick labels — rotated for a vertical axis.
|
|
1180
|
+
*
|
|
1181
|
+
* On a dual-axis chart this is the whole mechanism for saying which series belongs to
|
|
1182
|
+
* which scale. `secondAxis.label` was typed on `AreaChart`/`LineChart` for months and
|
|
1183
|
+
* rendered nothing, so a two-series chart was unreadable without a legend workaround.
|
|
1184
|
+
*/
|
|
1185
|
+
title?: string | undefined;
|
|
1186
|
+
/**
|
|
1187
|
+
* Distance from the axis line to the title, in px. Should clear the widest tick label;
|
|
1188
|
+
* callers already compute that width for their margins.
|
|
1189
|
+
*
|
|
1190
|
+
* @defaultValue `36`
|
|
1191
|
+
*/
|
|
1192
|
+
titleOffset?: number | undefined;
|
|
1136
1193
|
transform?: string;
|
|
1137
1194
|
}
|
|
1138
1195
|
declare function Axis({
|
|
@@ -1142,6 +1199,8 @@ declare function Axis({
|
|
|
1142
1199
|
format,
|
|
1143
1200
|
tickCount,
|
|
1144
1201
|
labelEvery,
|
|
1202
|
+
title,
|
|
1203
|
+
titleOffset,
|
|
1145
1204
|
transform
|
|
1146
1205
|
}: AxisProps): import("react").JSX.Element;
|
|
1147
1206
|
interface GridLinesProps {
|
|
@@ -1332,6 +1391,12 @@ interface LineChartSeries<Datum> {
|
|
|
1332
1391
|
id: string;
|
|
1333
1392
|
label: string;
|
|
1334
1393
|
data: readonly Datum[];
|
|
1394
|
+
/**
|
|
1395
|
+
* Series colour. **Omit it** — the Nth series automatically takes `--cascivo-chart-N`,
|
|
1396
|
+
* eight distinct hues per theme in both light and dark, so a multi-series chart
|
|
1397
|
+
* differentiates itself with no configuration. Set this only to override the position,
|
|
1398
|
+
* e.g. to keep "errors" red wherever it lands in the array.
|
|
1399
|
+
*/
|
|
1335
1400
|
color?: string;
|
|
1336
1401
|
/** Which y-axis this series is measured against. Default 'left'. */
|
|
1337
1402
|
axis?: 'left' | 'right';
|
|
@@ -1355,6 +1420,20 @@ interface LineChartProps<Datum = {
|
|
|
1355
1420
|
* plot multiple fields from one row, give each series its own `y`.
|
|
1356
1421
|
*/
|
|
1357
1422
|
y: (d: Datum) => number;
|
|
1423
|
+
/**
|
|
1424
|
+
* ⚠ **Not rendered as a visible heading.** This becomes the chart's accessible name
|
|
1425
|
+
* (the SVG `<caption>` / `aria-label`), which is why it is required — a chart with no
|
|
1426
|
+
* accessible name is unusable with a screen reader.
|
|
1427
|
+
*
|
|
1428
|
+
* For a visible heading, put a `CardTitle`/`Heading` above the chart. The prop name
|
|
1429
|
+
* promises a heading and an adopter wrote one, saw nothing, and ended up with a
|
|
1430
|
+
* redundant `CardTitle` on every chart anyway.
|
|
1431
|
+
*
|
|
1432
|
+
* It is NOT renamed to `ariaLabel` (the catalog's name for an invisible accessible name)
|
|
1433
|
+
* because an alias would have to make both optional, which drops the compile-time
|
|
1434
|
+
* guarantee that every chart has an accessible name. The requirement is worth more than
|
|
1435
|
+
* the naming consistency; this warning is the compensation.
|
|
1436
|
+
*/
|
|
1358
1437
|
title: string;
|
|
1359
1438
|
description?: string;
|
|
1360
1439
|
/**
|
|
@@ -1531,6 +1610,12 @@ interface AreaChartSeries<Datum> {
|
|
|
1531
1610
|
id: string;
|
|
1532
1611
|
label: string;
|
|
1533
1612
|
data: readonly Datum[];
|
|
1613
|
+
/**
|
|
1614
|
+
* Series colour. **Omit it** — the Nth series automatically takes `--cascivo-chart-N`,
|
|
1615
|
+
* eight distinct hues per theme in both light and dark, so a multi-series chart
|
|
1616
|
+
* differentiates itself with no configuration. Set this only to override the position,
|
|
1617
|
+
* e.g. to keep "errors" red wherever it lands in the array.
|
|
1618
|
+
*/
|
|
1534
1619
|
color?: string;
|
|
1535
1620
|
/** Which y-axis this series is measured against (ignored when `stacked`). Default 'left'. */
|
|
1536
1621
|
axis?: 'left' | 'right';
|
|
@@ -1559,6 +1644,20 @@ interface AreaChartProps<Datum = {
|
|
|
1559
1644
|
* plot multiple fields from one row, give each series its own `y`.
|
|
1560
1645
|
*/
|
|
1561
1646
|
y: (d: Datum) => number;
|
|
1647
|
+
/**
|
|
1648
|
+
* ⚠ **Not rendered as a visible heading.** This becomes the chart's accessible name
|
|
1649
|
+
* (the SVG `<caption>` / `aria-label`), which is why it is required — a chart with no
|
|
1650
|
+
* accessible name is unusable with a screen reader.
|
|
1651
|
+
*
|
|
1652
|
+
* For a visible heading, put a `CardTitle`/`Heading` above the chart. The prop name
|
|
1653
|
+
* promises a heading and an adopter wrote one, saw nothing, and ended up with a
|
|
1654
|
+
* redundant `CardTitle` on every chart anyway.
|
|
1655
|
+
*
|
|
1656
|
+
* It is NOT renamed to `ariaLabel` (the catalog's name for an invisible accessible name)
|
|
1657
|
+
* because an alias would have to make both optional, which drops the compile-time
|
|
1658
|
+
* guarantee that every chart has an accessible name. The requirement is worth more than
|
|
1659
|
+
* the naming consistency; this warning is the compensation.
|
|
1660
|
+
*/
|
|
1562
1661
|
title: string;
|
|
1563
1662
|
description?: string;
|
|
1564
1663
|
stacked?: boolean;
|
|
@@ -1876,11 +1975,10 @@ declare function ScatterChart({
|
|
|
1876
1975
|
interface SparklineBaseProps {
|
|
1877
1976
|
data: readonly number[];
|
|
1878
1977
|
/**
|
|
1879
|
-
*
|
|
1880
|
-
*
|
|
1881
|
-
*
|
|
1882
|
-
*
|
|
1883
|
-
* this — charts call it internally.
|
|
1978
|
+
* SVG width in px. **This chart is fixed-width by default** — it is a compact, inline
|
|
1979
|
+
* chart meant to sit in a table cell or beside a label, so omitting `width` gives you
|
|
1980
|
+
* 120px rather than a container-filling chart. Pass a number to change it. The
|
|
1981
|
+
* catalogue-wide "omit for a responsive chart" note does not apply to this chart.
|
|
1884
1982
|
*
|
|
1885
1983
|
* @defaultValue `80`
|
|
1886
1984
|
* @see the component manifest
|
|
@@ -1959,7 +2057,7 @@ declare function Meter({
|
|
|
1959
2057
|
label,
|
|
1960
2058
|
variant,
|
|
1961
2059
|
thresholds,
|
|
1962
|
-
width,
|
|
2060
|
+
width: fixedWidth,
|
|
1963
2061
|
height
|
|
1964
2062
|
}: MeterProps): import("react").JSX.Element;
|
|
1965
2063
|
interface KpiProps {
|
|
@@ -1978,6 +2076,19 @@ interface KpiProps {
|
|
|
1978
2076
|
* it receives the raw number and owns the entire string, sign included.
|
|
1979
2077
|
*/
|
|
1980
2078
|
deltaFormat?: 'number' | 'percent' | ((delta: number) => string);
|
|
2079
|
+
/**
|
|
2080
|
+
* Which direction is *good* for this metric — the colour, independent of the arrow.
|
|
2081
|
+
*
|
|
2082
|
+
* The arrow follows the sign of `delta`; this says whether that movement is welcome.
|
|
2083
|
+
* They coincide only for metrics where up is better, and assuming that made every
|
|
2084
|
+
* error-rate, latency, cost and churn tile render its worst news in green. Negating
|
|
2085
|
+
* `delta` to fix the colour also flips the arrow, so there was no correct answer.
|
|
2086
|
+
*
|
|
2087
|
+
* `'neutral'` keeps the arrow and drops the sentiment colour.
|
|
2088
|
+
*
|
|
2089
|
+
* @defaultValue `up`
|
|
2090
|
+
*/
|
|
2091
|
+
goodDirection?: 'up' | 'down' | 'neutral';
|
|
1981
2092
|
deltaLabel?: string;
|
|
1982
2093
|
icon?: ReactNode;
|
|
1983
2094
|
sparkline?: readonly number[];
|
|
@@ -1988,6 +2099,7 @@ declare function Kpi({
|
|
|
1988
2099
|
label,
|
|
1989
2100
|
delta,
|
|
1990
2101
|
deltaFormat,
|
|
2102
|
+
goodDirection,
|
|
1991
2103
|
deltaLabel,
|
|
1992
2104
|
icon,
|
|
1993
2105
|
sparkline,
|
|
@@ -2374,11 +2486,10 @@ interface BulletProps {
|
|
|
2374
2486
|
min?: number;
|
|
2375
2487
|
max?: number;
|
|
2376
2488
|
/**
|
|
2377
|
-
*
|
|
2378
|
-
*
|
|
2379
|
-
*
|
|
2380
|
-
*
|
|
2381
|
-
* this — charts call it internally.
|
|
2489
|
+
* SVG width in px. **This chart is fixed-width by default** — it is a compact, inline
|
|
2490
|
+
* chart meant to sit in a table cell or beside a label, so omitting `width` gives you
|
|
2491
|
+
* 300px rather than a container-filling chart. Pass a number to change it. The
|
|
2492
|
+
* catalogue-wide "omit for a responsive chart" note does not apply to this chart.
|
|
2382
2493
|
*
|
|
2383
2494
|
* @defaultValue `300`
|
|
2384
2495
|
* @see the component manifest
|
|
@@ -2669,12 +2780,12 @@ declare function Sankey({
|
|
|
2669
2780
|
className,
|
|
2670
2781
|
plain
|
|
2671
2782
|
}: SankeyProps): import("react").JSX.Element;
|
|
2672
|
-
interface
|
|
2783
|
+
interface CalendarHeatmapDatum {
|
|
2673
2784
|
day: string | Date;
|
|
2674
2785
|
value: number;
|
|
2675
2786
|
}
|
|
2676
|
-
interface
|
|
2677
|
-
data: readonly
|
|
2787
|
+
interface CalendarHeatmapProps {
|
|
2788
|
+
data: readonly CalendarHeatmapDatum[];
|
|
2678
2789
|
title: string;
|
|
2679
2790
|
description?: string;
|
|
2680
2791
|
/** Range start/end (ISO string or Date). Defaults to the data's min/max day. */
|
|
@@ -2703,7 +2814,7 @@ interface CalendarProps {
|
|
|
2703
2814
|
visualMap?: VisualMapOptions;
|
|
2704
2815
|
}
|
|
2705
2816
|
/** A calendar heatmap — a week-column grid of day cells colored by value. */
|
|
2706
|
-
declare function
|
|
2817
|
+
declare function CalendarHeatmap({
|
|
2707
2818
|
data,
|
|
2708
2819
|
title,
|
|
2709
2820
|
description,
|
|
@@ -2715,7 +2826,7 @@ declare function Calendar({
|
|
|
2715
2826
|
className,
|
|
2716
2827
|
plain,
|
|
2717
2828
|
visualMap
|
|
2718
|
-
}:
|
|
2829
|
+
}: CalendarHeatmapProps): import("react").JSX.Element;
|
|
2719
2830
|
interface CandlestickDatum {
|
|
2720
2831
|
/** Period label (date string or index). */
|
|
2721
2832
|
t: string;
|
|
@@ -2949,4 +3060,4 @@ declare function Gauge({
|
|
|
2949
3060
|
className,
|
|
2950
3061
|
plain
|
|
2951
3062
|
}: GaugeProps): import("react").JSX.Element;
|
|
2952
|
-
export { AXIS_CHAR_PX, AggOp, AggregateSpec, AngleBand, Annotation, AnnotationContext, AnnotationScale, AreaChart, AreaChartProps, AreaChartSeries, AreaDecimateOptions, Axis, AxisProps, BandScale, BarChart, BarChartProps, BarChartSeries, Bin, BoundStream, BoxStats, Boxplot, BoxplotProps, BoxplotSeries, Brush, BrushProps, BubbleChart, BubbleChartProps, BubbleDatum, BubbleSeries, Bullet, BulletProps,
|
|
3063
|
+
export { AXIS_CHAR_PX, AXIS_LINE_PX, AggOp, AggregateSpec, AngleBand, Annotation, AnnotationContext, AnnotationScale, AreaChart, AreaChartProps, AreaChartSeries, AreaDecimateOptions, Axis, AxisProps, BandScale, BarChart, BarChartProps, BarChartSeries, Bin, BoundStream, BoxStats, Boxplot, BoxplotProps, BoxplotSeries, Brush, BrushProps, BubbleChart, BubbleChartProps, BubbleDatum, BubbleSeries, Bullet, BulletProps, CalendarHeatmap, CalendarHeatmapDatum, CalendarHeatmapProps, Candlestick, CandlestickDatum, CandlestickProps, CanvasLayer, CanvasLayerProps, CanvasPaint, CanvasSize, CategoryDatum, CategoryMapping, ChartDefs, ChartDefsProps, ChartFrame, ChartFrameProps, ChartSize, ComboChart, ComboChartBar, ComboChartPoint, ComboChartProps, Curve, DEFAULT_MARGINS, DataLabel, DataLabelProps, DataZoom, DataZoomProps, DecimateMethod, DecimateOptions, DefSeries, EncodeMapping, EncodedResult, EncodedSeries, FillKind, Funnel, FunnelProps, FunnelStage, Gauge, GaugeProps, GaugeThreshold, Glyph, GlyphProps, GlyphShape, GridLines, GridLinesProps, Heatmap, HeatmapDatum, HeatmapProps, HierNode, Histogram, HistogramBin, HistogramProps, Kpi, KpiProps, LabelOptions, LaidLink, LaidNode, Legend, LegendProps, LegendSeries, LineChart, LineChartProps, LineChartSeries, LinearScale, LogScale, Meter, MeterProps, MeterThresholds, PLAIN_MARGINS, PartitionedNode, PatternKind, PieChart, PieChartDatum, PieChartProps, Point, Polar, PolarDatum, PolarProps, Pt, Radar, RadarProps, RadarSeries, RadialBar, RadialBarDatum, RadialBarProps, RampKind, Rect, RegressionResult, RegressionType, ResolvedLabelOptions, Row, Sankey, SankeyLayout, SankeyLink, SankeyNode, SankeyOptions, SankeyProps, ScatterChart, ScatterChartProps, ScatterChartSeries, ScatterDatum, Sparkline, SparklineProps, StackedRow, StackedSegment, Stream, StreamDecimate, StreamOffset, StreamProps, StreamSeries, StreamSeriesOptions, StreamSource, Sunburst, SunburstProps, SyncGroup, Text, TextProps, TimeScale, Toolbox, ToolboxOptions, ToolboxProps, Treemap, TreemapDatum, TreemapNode, TreemapProps, TreemapRect, Vec, VisualChannel, VisualMap, VisualMapOptions, VisualMapProps, VisualMode, VisualResult, ZoomConfig, _syncGroupCount, aggregate, angleBand, annotationSummary, arcPath, areaPath, autoLabelStride, bandScale, bin, binValues, bindStream, boxStats, cellPath, decimate$1 as decimate, divergingRamp, download, encode, encodeCategory, extent, fillFor, filter, getSyncGroup, glyphPath, gradientId, isZoomed, leftMarginForLabels, linePath, linearScale, linkPath, logScale, lttb, mapVisual, maxDepth, minmax, nearestIndex, niceTicks, panWindow, partition, patternId, pieceIndex, polarPoint, quantize, radiusScale, rampLightness, rampOf, rampStops, regression, releaseSyncGroup, renderAnnotation, renderAnnotations, resolveColor, resolveLabels, rightMarginForLabels, sankeyLayout, sequentialRamp, serializeSvg, sort, splitDefined, sqrtScale, squarify, stackSeries, streamExtent, streamLayout, sumValue, svgToPngBlob, timeScale, toStackedSeries, useChartSize, useStreamSeries, visualVisible, voronoiCells, voronoiFind, wrapText, zoomWindow };
|