Skip to content

Commit

Permalink
fix(interactive-chart): change chart property access modifier from pr…
Browse files Browse the repository at this point in the history
…ivate to public
  • Loading branch information
bualoy-napat committed Jul 28, 2023
1 parent 8e2a1e4 commit 35339ed
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/elements/src/interactive-chart/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,16 @@ export class InteractiveChart extends ResponsiveElement {
*/
public seriesList: SeriesList[] = [];

/**
* lightweight-charts object
* @type {IChartApi | null}
*/
public chart: IChartApi | null = null;

private jumpButtonInitialized = false;
private legendInitialized = false;
private isCrosshairVisible = false;

protected chart: IChartApi | null = null;
protected rowLegend: RowLegend = null;
private timeScale: ITimeScaleApi | null = null;

Expand Down

0 comments on commit 35339ed

Please sign in to comment.