@barchart/chart-lib 2.391.0 → 2.392.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.
@@ -1991,8 +1991,12 @@ declare module "@barchart/chart-lib" {
1991
1991
  | "SymbolNine"
1992
1992
  | "SymbolQuestion"
1993
1993
  | "SymbolFishHook"
1994
- | "SymbolBuy"
1995
- | "SymbolSell"
1994
+ | "SymbolLetterB"
1995
+ | "SymbolLetterS"
1996
+ | "SymbolLetterA"
1997
+ | "SymbolLetterC"
1998
+ | "SymbolLetterD"
1999
+ | "SymbolLetterE"
1996
2000
  | "FibonacciTimeZones"
1997
2001
  | "Text"
1998
2002
  | "ProfitLoss"
@@ -2532,6 +2536,10 @@ declare module "@barchart/chart-lib" {
2532
2536
  * @returns @see ChartAccessor or `null` if none was found
2533
2537
  */
2534
2538
  getChart(renderTo: RenderTo): ChartAccessor | null;
2539
+ /** Schedule a redraw of the chart already on the page. Redraws are batched per element using `requestAnimationFrame`, so calling this repeatedly is cheap.
2540
+ * @param renderTo The id of the element (or the element itself) the chart was placed into.
2541
+ */
2542
+ redraw(renderTo: RenderTo): void;
2535
2543
  /** Returns the version of the chart engine. The version is always traced to the JS console on startup. */
2536
2544
  version: string;
2537
2545
  /** Returns the configuration passed to the data feed on construction merged with the default values. */