katucharts.js 0.2.17 → 0.2.19

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 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
  }