@barchart/chart-lib 2.203.3 → 2.203.5
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 +2 -0
- chart-lib/barchart.chart.js +1 -1
- chart-lib/package.json +1 -1
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -1764,6 +1764,8 @@ declare module "@barchart/chart-lib" {
|
|
|
1764
1764
|
shutdown(): boolean;
|
|
1765
1765
|
/** Call this method when you need to place an annotation on the chart. Detailed information can be found in the online documentation. */
|
|
1766
1766
|
annotate(id?: string, traits?: AnnotationTraits, annParam?: any): void;
|
|
1767
|
+
/** Cancel the (interactive) annotation creation and go back to the default (typically pan and zoom) tool */
|
|
1768
|
+
cancelAnnotation(): void;
|
|
1767
1769
|
/** Helper method to return back the default template, the same one you've provided during the feed's @see init call. */
|
|
1768
1770
|
getDefaultTemplate(): string;
|
|
1769
1771
|
/** Main API entry point. Please check out online documentation for details. */
|