Commit 47eab80b authored by Almouhannad Hafez's avatar Almouhannad Hafez

Fix some visibilities in chart.ts

parent f8d397a1
...@@ -2,11 +2,11 @@ import * as d3 from 'd3'; ...@@ -2,11 +2,11 @@ import * as d3 from 'd3';
import { ChartConfiguration } from './chart-configuration'; import { ChartConfiguration } from './chart-configuration';
export abstract class Chart { export abstract class Chart {
protected config: ChartConfiguration; public config: ChartConfiguration;
public data: any[]; public data: any[];
protected width: number; public width: number;
protected height: number; public height: number;
protected svg: d3.Selection<d3.BaseType, unknown, HTMLElement, any>; protected svg: any;
protected chart: any; protected chart: any;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment