@barchart/chart-lib 2.290.1 → 2.291.1
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";
|