@praxisui/charts 9.0.29 → 9.0.31
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 +3 -0
- package/ai/component-registry.json +81 -48
- package/fesm2022/praxisui-charts.mjs +101 -26
- package/package.json +3 -3
- package/types/praxisui-charts.d.ts +6 -0
package/README.md
CHANGED
|
@@ -146,6 +146,9 @@ Supported canonical kinds are `bar`, `horizontal-bar`, `line`, `area`, `stacked-
|
|
|
146
146
|
`stacked-area`, `combo`, `pie`, `donut`, `scatter`, `funnel`, and `pyramid`. Funnel and
|
|
147
147
|
pyramid require one categorical dimension and exactly one non-negative metric. They preserve the
|
|
148
148
|
canonical row order; pyramid reverses the visual direction without sorting stages by value.
|
|
149
|
+
Scatter accepts one or two metrics. With one metric, the first dimension is X and the metric is Y.
|
|
150
|
+
With two metrics, the first dimension remains the grouped bucket identity while the first and second
|
|
151
|
+
metrics map to X and Y; the canonical mapper derives the multi-metric stats request.
|
|
149
152
|
|
|
150
153
|
## Governed chart/table presentation
|
|
151
154
|
|