Type Alias ChartManager

ChartManager: {
    _popOutChart: (chart: BaseChart) => void;
    addMenuIcon: (
        dataSourceName: DataSourceName,
        iconClass: string,
        text: string,
        func: () => void,
    ) => HTMLElement;
    charts: Record<string, ChartState>;
    dataSources: DataSourceSpec[];
    dsIndex: Record<string, DataSourceSpec>;
}

Type declaration

  • _popOutChart: (chart: BaseChart) => void

    probably not something we really want to use publicly like this

  • addMenuIcon: (
        dataSourceName: DataSourceName,
        iconClass: string,
        text: string,
        func: () => void,
    ) => HTMLElement
  • charts: Record<string, ChartState>
  • dataSources: DataSourceSpec[]
  • dsIndex: Record<string, DataSourceSpec>