@barchart/chart-lib 2.275.0 → 2.277.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 +16 -1
- chart-lib/barchart.chart.js +1 -1
- chart-lib/package.json +1 -1
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -876,6 +876,7 @@ declare module "@barchart/chart-lib" {
|
|
|
876
876
|
CH_API_ACTIONS_RECEIVED: string;
|
|
877
877
|
CH_HOST_PROPS_CHANGED: string;
|
|
878
878
|
CH_DEFINITION_CHANGED: string;
|
|
879
|
+
CH_PLOTNEEDSCONTEXTMENU: string;
|
|
879
880
|
DF_ALL: string;
|
|
880
881
|
DF_STREAMRECONNECTED: string;
|
|
881
882
|
TS_ALL: string;
|
|
@@ -1007,6 +1008,7 @@ declare module "@barchart/chart-lib" {
|
|
|
1007
1008
|
interface TooltipHeadersConfig {
|
|
1008
1009
|
showMainPlot?: boolean;
|
|
1009
1010
|
includeTimestamp?: boolean;
|
|
1011
|
+
showPlotActions?: boolean;
|
|
1010
1012
|
}
|
|
1011
1013
|
|
|
1012
1014
|
type HostingModel = "Page" | "Application";
|
|
@@ -1382,7 +1384,8 @@ declare module "@barchart/chart-lib" {
|
|
|
1382
1384
|
| TemplateAccessor
|
|
1383
1385
|
| OutlineAccessor
|
|
1384
1386
|
| ThemeAccessor
|
|
1385
|
-
| ClearAccessor
|
|
1387
|
+
| ClearAccessor
|
|
1388
|
+
| MovePlotAccessor;
|
|
1386
1389
|
|
|
1387
1390
|
export interface ClearAccessor {
|
|
1388
1391
|
id: "Clear";
|
|
@@ -1582,6 +1585,18 @@ declare module "@barchart/chart-lib" {
|
|
|
1582
1585
|
};
|
|
1583
1586
|
}
|
|
1584
1587
|
|
|
1588
|
+
export type MoveTargetPane = "ExistingAbove" | "NewAbove" | "ExistingBelow" | "NewBelow";
|
|
1589
|
+
|
|
1590
|
+
export interface MovePlotAccessor {
|
|
1591
|
+
id: "MovePlot";
|
|
1592
|
+
context: {
|
|
1593
|
+
id?: "Get";
|
|
1594
|
+
index: number;
|
|
1595
|
+
type: PlotType;
|
|
1596
|
+
targetPane?: MoveTargetPane;
|
|
1597
|
+
};
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1585
1600
|
export interface TemplateAccessor {
|
|
1586
1601
|
id: string;
|
|
1587
1602
|
context: {
|