@barchart/chart-lib 2.302.2 → 2.303.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 +1 -1
- chart-lib/barchart.chart.js +1 -1
- chart-lib/package.json +1 -1
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -1970,7 +1970,7 @@ declare module "@barchart/chart-lib" {
|
|
|
1970
1970
|
/** Main API entry point. Please check out online documentation for details. */
|
|
1971
1971
|
change(...actions: ChartAction[]): void | any;
|
|
1972
1972
|
/** Load a chart definition into this chart instance. The `options` define some rarely used, well, options like whether we should keep annotations or not etc. */
|
|
1973
|
-
load(definition: string, options?: Partial<LoadOptions>): void
|
|
1973
|
+
load(definition: string, options?: Partial<LoadOptions>): Promise<void>;
|
|
1974
1974
|
/** Save a chart definition into a string. */
|
|
1975
1975
|
save(): string;
|
|
1976
1976
|
/** Set the title for the chart. Not used often. Is ephemeral - does not get saved with the chart. */
|