@barchart/chart-lib 2.290.0 → 2.291.0
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.
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -1457,12 +1457,16 @@ declare module "@barchart/chart-lib" {
|
|
|
1457
1457
|
|
|
1458
1458
|
export interface TooltipAccessor {
|
|
1459
1459
|
id: string;
|
|
1460
|
-
context: ITooltipContext;
|
|
1460
|
+
context: ITooltipContext | { id: "Get" };
|
|
1461
1461
|
}
|
|
1462
1462
|
|
|
1463
|
+
export type TooltipMainTitle = "Name" | "Description";
|
|
1464
|
+
|
|
1463
1465
|
export interface ITooltipContext {
|
|
1464
1466
|
visible?: boolean;
|
|
1465
1467
|
mode?: TooltipMode;
|
|
1468
|
+
showMainTitle?: boolean;
|
|
1469
|
+
mainTitle?: TooltipMainTitle;
|
|
1466
1470
|
}
|
|
1467
1471
|
|
|
1468
1472
|
export type TooltipMode = "standard" | "bubble" | "cards" | "external";
|
|
@@ -2673,6 +2677,7 @@ declare module "@barchart/chart-lib" {
|
|
|
2673
2677
|
paneIndex?: number;
|
|
2674
2678
|
title: string;
|
|
2675
2679
|
cloneIndex?: number;
|
|
2680
|
+
visible: boolean;
|
|
2676
2681
|
}
|
|
2677
2682
|
|
|
2678
2683
|
export interface SymbolPlot extends Plot {
|