katucharts.js 0.2.17 → 0.2.18
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 +2 -0
- package/dist/katucharts-bio.es.js +9 -0
- package/dist/katucharts-bio.umd.js +1 -1
- package/dist/katucharts-finance.es.js +9 -0
- package/dist/katucharts-finance.umd.js +1 -1
- package/dist/katucharts.es.js +6555 -6127
- package/dist/katucharts.umd.js +5 -5
- package/dist/series/BaseSeries.d.ts +8 -0
- package/dist/series/item/ItemChart.d.ts +98 -0
- package/dist/series/timeline/TimelineChart.d.ts +42 -0
- package/dist/types/options.d.ts +26 -2
- package/dist/utils/geometry.d.ts +10 -0
- package/dist/utils/gradient.d.ts +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -128,6 +128,8 @@ KatuCharts.use(FinanceModule);
|
|
|
128
128
|
| `solidgauge` | Solid radial gauge |
|
|
129
129
|
| `polar` | Polar coordinate plot |
|
|
130
130
|
| `radar` | Alias for polar |
|
|
131
|
+
| `item` | Unit chart — one symbol per unit of each point's value (grid or arc) |
|
|
132
|
+
| `classroom` | Hemicycle of seats (one per unit), grouped and colored by category |
|
|
131
133
|
|
|
132
134
|
### Core — Hierarchical
|
|
133
135
|
|
|
@@ -2613,6 +2613,15 @@ class nt {
|
|
|
2613
2613
|
getMultiLegendItems() {
|
|
2614
2614
|
return null;
|
|
2615
2615
|
}
|
|
2616
|
+
/**
|
|
2617
|
+
* Toggle the visibility of an individual legend item (for series that expose
|
|
2618
|
+
* several via getMultiLegendItems). Returns the item's new visible state, or
|
|
2619
|
+
* null when the series doesn't support per-item toggling — in which case the
|
|
2620
|
+
* legend falls back to toggling the whole series.
|
|
2621
|
+
*/
|
|
2622
|
+
toggleLegendItem(t) {
|
|
2623
|
+
return null;
|
|
2624
|
+
}
|
|
2616
2625
|
getLegendSymbolShape() {
|
|
2617
2626
|
return null;
|
|
2618
2627
|
}
|