EQuery: {
    MAIN_TIMESERIES: { isMainTimeSeries: true; objType: "timeseries" };
    TYPE_CHART: { objType: "chart" };
    TYPE_GENERATOR: { objType: "generator" };
    TYPE_INDICATOR: { objType: "indicator" };
    TYPE_LAYER: { objType: "layer" };
    TYPE_MERGER: { objType: "merger" };
    TYPE_SCALE: { objType: "scale" };
    TYPE_TIMESERIES: { objType: "timeseries" };
    TYPE_TOOL: { objType: "tool" };
}

constants for common queries for methods in BG.charts.Controller

Functions using this enum include:

  • BG.charts.Controller.getObject
  • BG.charts.Controller.getObjects
  • BG.charts.Controller.enumerateObjects

All of these constants are just pre made objects for convenience. E.g. EObjectQuery.TYPE_TOOL is the same as {"objType":"tool"}

Type declaration

  • ReadonlyMAIN_TIMESERIES: { isMainTimeSeries: true; objType: "timeseries" }
  • ReadonlyTYPE_CHART: { objType: "chart" }
  • ReadonlyTYPE_GENERATOR: { objType: "generator" }
  • ReadonlyTYPE_INDICATOR: { objType: "indicator" }
  • ReadonlyTYPE_LAYER: { objType: "layer" }
  • ReadonlyTYPE_MERGER: { objType: "merger" }
  • ReadonlyTYPE_SCALE: { objType: "scale" }
  • ReadonlyTYPE_TIMESERIES: { objType: "timeseries" }
  • ReadonlyTYPE_TOOL: { objType: "tool" }