Interface of the main trueChart class

Hierarchy

  • ITrueChart

Index

Properties

DataManager

DataManager: IDataManager

returns the DataManager instance

EventsManager

EventsManager: IEventsManager

returns the EventsManager instance

FeatureManager

FeatureManager: IFeatureManager

returns the FeatureManager instance

Initialized

Initialized: Promise<void>

a Promise which will be resolved, when trueChart is completely initialized

LayoutManager

LayoutManager: ILayoutManager

returns the LayoutManager instance

TemplateManager

TemplateManager: ITemplateManager

returns the TemplateManager instance

Methods

getIsActive

  • getIsActive(): boolean
  • evaluates the registered callback returns the value

    Returns boolean

    the active state

getIsHidden

  • getIsHidden(): boolean
  • evaluates the registered callback returns the value

    Returns boolean

    the active state

setIsActive

  • setIsActive(cb: boolean | function): void
  • register an callback that evaluates if on extension is active use this to 'deregister' a trueChart instance when it is not visible on the actual sheet

    Parameters

    • cb: boolean | function

      function that returns the state or boolean

    Returns void

setIsHidden

  • setIsHidden(cb: boolean | function): void
  • register an callback that evaluates if on extension is hidden tell trueChart that is located on a sheet but currently not displayed

    Parameters

    • cb: boolean | function

      function that returns the state or boolean

    Returns void

show

  • show(): void
  • shows the trueChart component

    Returns void