@redsift/charts 12.5.3-alpha.5 → 12.5.3-alpha.7
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/_internal/BarChart2.js +6 -0
- package/_internal/BarChart2.js.map +1 -1
- package/_internal/LineChart2.js +5 -0
- package/_internal/LineChart2.js.map +1 -1
- package/index.d.ts +11 -0
- package/package.json +2 -2
package/_internal/BarChart2.js
CHANGED
|
@@ -1480,6 +1480,12 @@ const CLASSNAME = 'redsift-barchart';
|
|
|
1480
1480
|
* BarChart visualizes categorical data with rectangular bars.
|
|
1481
1481
|
* Built on D3.js with responsive sizing and interactive tooltips.
|
|
1482
1482
|
*
|
|
1483
|
+
* This is the only public entry point for bar charts. Do not import
|
|
1484
|
+
* `RenderedLinearBarChart`, `RenderedOrdinalBarChart`, `EmptyBarChart`, or
|
|
1485
|
+
* `LoadingBarChart` directly — `BarChart` selects the correct renderer
|
|
1486
|
+
* (linear vs. ordinal scale) automatically based on the data type,
|
|
1487
|
+
* and manages all loading and empty states internally.
|
|
1488
|
+
*
|
|
1483
1489
|
* Supports horizontal/vertical orientation, stacked/grouped bars,
|
|
1484
1490
|
* and various legend placements.
|
|
1485
1491
|
*
|