Chartbreaker
    Preparing search index...

    Type Alias EQuery

    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 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" };
    }
    Index

    Properties

    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" }