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';
import { ChartConfiguration } from './chart-configuration';
export abstract class Chart {
protected config: ChartConfiguration;
public config: ChartConfiguration;
public data: any[];
protected width: number;
protected height: number;
protected svg: d3.Selection<d3.BaseType, unknown, HTMLElement, any>;
public width: number;
public height: number;
protected svg: 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